diff options
| author | Loris Cro <kappaloris@gmail.com> | 2022-11-24 16:53:22 +0100 |
|---|---|---|
| committer | Loris Cro <kappaloris@gmail.com> | 2022-11-24 16:53:22 +0100 |
| commit | a3552a6c5083a4a58223b38bc20df4ada0c736c1 (patch) | |
| tree | 1e0181698bf5638ddb1d1e880ecf5affb128dd56 /.github | |
| parent | feb806a212355956a33cc843a6d593741b93c5ec (diff) | |
| download | zig-a3552a6c5083a4a58223b38bc20df4ada0c736c1.tar.gz zig-a3552a6c5083a4a58223b38bc20df4ada0c736c1.zip | |
ci: remove gh action job output as it's not used anymore
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yaml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7c841777c9..7a278e070e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,20 +10,14 @@ concurrency: cancel-in-progress: true jobs: x86_64-linux-debug: - outputs: - version: ${{ steps.version.outputs.version }} runs-on: [self-hosted, Linux, x86_64] steps: - name: Checkout uses: actions/checkout@v3 - name: Build and Test run: sh ./ci/linux/build-x86_64-debug.sh - # The following step is required by the build-tarballs job. - # If this job is being deleted / commented out, make sure - # to have another job provide this information. - - name: Get Version - id: version - run: echo "version=$(stage3-debug/bin/zig version)" >> $GITHUB_OUTPUT + - name: Print Version + run: echo "$(build-debug/stage3-debug/bin/zig version)" x86_64-linux-release: runs-on: [self-hosted, Linux, x86_64] steps: |
