Skip to content

Commit

Permalink
chore: bump version from 1.0.8 to 1.0.9 in relevant files
Browse files Browse the repository at this point in the history
  • Loading branch information
slavaGanzin committed Nov 21, 2024
1 parent 4c079ab commit ceca909
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Check if Release Exists
id: check_release
run: |
gh release view 1.0.7 || echo "Release does not exist"
gh release view 1.0.8 || echo "Release does not exist"
- name: Create or Update Release
id: create_update_release
Expand All @@ -79,16 +79,16 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: 1.0.7
release_name: 1.0.7
tag_name: 1.0.8
release_name: 1.0.8
body: Fixed ctrl-c handling when it's run from bash script
draft: false
prerelease: false

- name: Update Release Archives
if: steps.check_release.outputs.exists == 'true'
run: |
gh release upload 1.0.7 archives/* --clobber
gh release upload 1.0.8 archives/* --clobber
- name: Download Artifact
uses: actions/download-artifact@v4
Expand All @@ -97,14 +97,14 @@ jobs:
run: |
mkdir -p archives
tree
tar -czvf archives/await-1.0.7-aarch64-x86_64-apple-darwin.tar.gz -C await-macos-latest .
tar -czvf archives/await-1.0.7-x86_64-unknown-linux-gnu.tar.gz -C await-ubuntu-latest .
tar -czvf archives/await-1.0.8-aarch64-x86_64-apple-darwin.tar.gz -C await-macos-latest .
tar -czvf archives/await-1.0.8-x86_64-unknown-linux-gnu.tar.gz -C await-ubuntu-latest .
tree
- name: Upload Release Artifacts
uses: softprops/action-gh-release@v1
with:
files: archives/*
tag_name: 1.0.7
tag_name: 1.0.8
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion await.c
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ void parse_args(int argc, char *argv[]) {
case 'S': args.service = optarg; break;
case 'i': args.interval = atoi(optarg); break;
case 'd': args.daemonize = 1; break;
case 'v': printf("1.0.8\n"); exit(0); break;
case 'v': printf("1.0.9\n"); exit(0); break;
case 'h': case '?': help(); break;
case 1:
if (strcmp(long_options[option_index].name, "autocomplete-fish") == 0) {
Expand Down

0 comments on commit ceca909

Please sign in to comment.