We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 333374a commit 82b1fc0Copy full SHA for 82b1fc0
.github/workflows/continuous_integration.yml
@@ -50,7 +50,7 @@ jobs:
50
id: gigid
51
run: |
52
export FAKE_VALID_TOKEN=fake-valid-token
53
- bash src/scripts/upload.sh
+ bash src/scripts/upload.sh >> "$GITHUB_OUTPUT"
54
env:
55
REPO_URL: ${{ github.server_url }}/${{ github.repository }}
56
TOKEN: FAKE_VALID_TOKEN
src/scripts/upload.sh
@@ -21,4 +21,5 @@ curl -X POST \
21
22
GIGID=$(cat result.json | jq -r .gigid)
23
echo "::notice title=CI Issues report::CI_ISSUE_GIGID=$GIGID"
24
-echo "CI_ISSUE_GIGID=$GIGID" >> "$GITHUB_OUTPUT"
+
25
+echo "CI_ISSUE_GIGID=$GIGID"
0 commit comments