Skip to content

Commit

Permalink
ci(fix): further fixes in the release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
SachsenspieltCoding committed Apr 24, 2024
1 parent db45fa3 commit c1b3058
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
run: |
sudo apt-get install -y jq
COMMIT_SHA=$(git rev-parse --short HEAD)
jq --arg sha "$SENTRY_RELEASE" '.sha = $sha' static/info.json > temp.json && mv temp.json build/info.json
jq --arg date "$(date -Iseconds)" '.build_date = $date' static/info.json > temp.json && mv temp.json build/info.json
jq --arg version "${{ github.event.release.tag_name }}" '.version = $version' static/info.json > temp.json && mv temp.json build/info.json
jq --arg sha "$SENTRY_RELEASE" '.sha = $sha' static/info.json > temp.json && mv temp.json static/info.json
jq --arg date "$(date -Iseconds)" '.build_date = $date' static/info.json > temp.json && mv temp.json static/info.json
jq --arg version "${{ github.event.release.tag_name }}" '.version = $version' static/info.json > temp.json && mv temp.json static/info.json
- name: Build Svelte app
run: npm run build
Expand Down

0 comments on commit c1b3058

Please sign in to comment.