Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
- name: Install jq
run: sudo apt-get update && sudo apt-get install -y jq

- name: Update config.json version to ${{ github.event.release.tag_name }}
run: |
jq --arg v "${{ github.event.release.tag_name }}" '.version = $v' ./config.json > ./config.tmp.json
mv ./config.tmp.json ./config.json

- name: Commit manifest update
run: |
git config user.name github-actions
Expand All @@ -39,13 +44,8 @@ jobs:
run: |
sha256sum AutoExitNode.exe > AutoExitNode.exe.sha256

- name: Update config.json version to ${{ github.event.release.tag_name }}
run: |
jq --arg v "${{ github.event.release.tag_name }}" '.version = $v' ./config.json > ./config.tmp.json
mv ./config.tmp.json ./config.json

- name: Upload AutoExitNode.exe to release
uses: svenstaro/upload-release-action@2.11.2
uses: svenstaro/upload-release-action@2.11.1
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./AutoExitNode.exe
Expand All @@ -54,7 +54,7 @@ jobs:
overwrite: true

- name: Upload SHA256 file to release
uses: svenstaro/upload-release-action@2.11.2
uses: svenstaro/upload-release-action@2.11.1
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./AutoExitNode.exe.sha256
Expand Down
Loading