Skip to content

Commit a3552a6

Browse files
committed
ci: remove gh action job output as it's not used anymore
1 parent feb806a commit a3552a6

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,14 @@ concurrency:
1010
cancel-in-progress: true
1111
jobs:
1212
x86_64-linux-debug:
13-
outputs:
14-
version: ${{ steps.version.outputs.version }}
1513
runs-on: [self-hosted, Linux, x86_64]
1614
steps:
1715
- name: Checkout
1816
uses: actions/checkout@v3
1917
- name: Build and Test
2018
run: sh ./ci/linux/build-x86_64-debug.sh
21-
# The following step is required by the build-tarballs job.
22-
# If this job is being deleted / commented out, make sure
23-
# to have another job provide this information.
24-
- name: Get Version
25-
id: version
26-
run: echo "version=$(stage3-debug/bin/zig version)" >> $GITHUB_OUTPUT
19+
- name: Print Version
20+
run: echo "$(build-debug/stage3-debug/bin/zig version)"
2721
x86_64-linux-release:
2822
runs-on: [self-hosted, Linux, x86_64]
2923
steps:

0 commit comments

Comments
 (0)