Skip to content

Commit

Permalink
Test auto-release 0.1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
ostenbom committed Nov 9, 2023
1 parent f3353b3 commit 0eee8ae
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
28 changes: 16 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,15 @@ jobs:
echo "$(cat ${{ env.CHECKSUM_PATH }})"
echo "mac_arm_sha=$(cat ${{ env.CHECKSUM_PATH }})" >> $GITHUB_OUTPUT
# - name: Release
# uses: softprops/action-gh-release@v1
# with:
# tag_name: ${{ env.RELEASE_VERSION }}
# files: |
# ${{ env.ASSET_PATH }}
# ${{ env.CHECKSUM_PATH }}
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.RELEASE_VERSION }}
files: |
${{ env.ASSET_PATH }}
${{ env.CHECKSUM_PATH }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

update_homebrew_formula:
needs: [build]
Expand All @@ -152,10 +152,14 @@ jobs:
# sed -i "s|linkup/releases/download/[^/]*/linkup-[^-]*-|linkup/releases/download/$RELEASE_VERSION/linkup-$RELEASE_VERSION-|" "$FORMULA_PATH"
cd homebrew-mentimeter
git config user.name "release-bot"
git config user.email "[email protected]"
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/mentimeter/homebrew-mentimeter.git
git config --global user.name "release-bot"
git config --global user.email "[email protected]"
git add linkup.rb
git commit -m "Update Linkup formula to $RELEASE_VERSION"
git push
git push origin HEAD:main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion linkup-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linkup-cli"
version = "0.1.18"
version = "0.1.19"
edition = "2021"

[[bin]]
Expand Down

0 comments on commit 0eee8ae

Please sign in to comment.