release #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
release: | |
types: | |
- created | |
workflow_dispatch: | |
jobs: | |
commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: master | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- name: Get Version | |
run: echo "RELEASE_VERSION=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV | |
- name: Update Version | |
shell: bash | |
run: | | |
set -x | |
sed -i "s/Version = .*/Version = \"${RELEASE_VERSION}\"/" main.go | |
git config --global user.email "[email protected]" | |
git config --global user.name "github-actions" | |
git add main.go | |
git commit -m "Release $RELEASE_VERSION" | |
git tag "$RELEASE_VERSION" --force | |
git push --atomic --force origin master "$RELEASE_VERSION" | |
binary: | |
needs: [commit] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: master | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- name: Get Version | |
run: echo "RELEASE_VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
- name: Build and Upload | |
env: | |
FORCE_COLOR: 3 | |
GITHUB_TOKEN: ${{ secrets.MY_WALK_GITHUB_TOKEN }} | |
run: npx zx .github/workflows/release.mjs | |
brew: | |
needs: [commit] | |
runs-on: macos-latest | |
steps: | |
- name: Set up Homebrew | |
id: set-up-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
with: | |
test-bot: false | |
- name: Cache Homebrew Bundler RubyGems | |
id: cache | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.set-up-homebrew.outputs.gems-path }} | |
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }} | |
restore-keys: ${{ runner.os }}-rubygems- | |
- name: Install Homebrew Bundler RubyGems | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: brew install-bundler-gems | |
- name: Configure Git user | |
uses: Homebrew/actions/git-user-config@master | |
- name: Update brew | |
run: brew update | |
- name: Bump formulae | |
uses: Homebrew/actions/bump-formulae@master | |
with: | |
token: ${{ secrets.MY_HOMEBREW_RELEASE_GITHUB_TOKEN }} | |
formulae: walk |