Skip to content

Commit

Permalink
add install-tester workflow (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
untitaker authored Oct 25, 2024
1 parent 8879ad7 commit ebbf40d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/install-tester.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Test installations

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
gha:
runs-on: "ubuntu-20.04"
steps:
- uses: untitaker/[email protected]
with:
args: --help
3 changes: 2 additions & 1 deletion scripts/release-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ echo ">>> Bumping version"
readme_pattern='\(untitaker\/hyperlink[@:]\)'
sed -i.bak "s/$readme_pattern$current_version/\\1$new_version/" README.md
rm README.md.bak
sed -i.bak "s/$readme_pattern$current_version/\\1$new_version/" .github/workflows/install-tester.yml
rm .github/workflows/install-tester.yml.bak
sed -i.bak "s/version = \"$current_version\"/version = \"$new_version\"/" Cargo.toml
rm Cargo.toml.bak

Expand All @@ -36,7 +38,6 @@ set +x

echo "things left to do:"
echo " cargo publish"
echo " npm publish"
echo " git push"
echo " git push origin $new_version"
echo " uncheck and check 'Publish to Marketplace' property of the new release"
Expand Down

0 comments on commit ebbf40d

Please sign in to comment.