Skip to content

Commit

Permalink
Update version to 1.0.2 in GitHub Actions workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
slavaGanzin committed Aug 2, 2024
1 parent 0bfb08a commit f5b6b91
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Check if Release Exists
id: check_release
run: |
gh release view v1.0.1 || echo "Release does not exist"
gh release view v1.0.2 || echo "Release does not exist"
- name: Create or Update Release
id: create_update_release
Expand All @@ -77,16 +77,16 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v1.0.1
release_name: v1.0.1
tag_name: v1.0.2
release_name: v1.0.2
body: Fixed ctrl-c handling when it's run from bash script
draft: false
prerelease: false

- name: Update Release Binaries
if: steps.check_release.outputs.exists == 'true'
run: |
gh release upload v1.0.1 releases/* --clobber
gh release upload v1.0.2 releases/* --clobber
- name: Download Artifact
uses: actions/download-artifact@v2
Expand All @@ -104,6 +104,6 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: releases/*
tag_name: v1.0.1
tag_name: v1.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f5b6b91

Please sign in to comment.