fx/.github/workflows/release.yml

60 lines
1.5 KiB
YAML
Raw Normal View History

2022-04-19 21:56:10 +00:00
name: release
2023-04-07 13:51:16 +00:00
on: [release, workflow_dispatch]
2022-04-19 21:56:10 +00:00
jobs:
2022-04-25 14:43:14 +00:00
snap:
2023-09-18 19:54:07 +00:00
runs-on: ubuntu-20.04
2022-04-25 14:43:14 +00:00
steps:
- uses: actions/checkout@v3
2022-04-25 19:25:34 +00:00
with:
ref: master
2022-04-25 14:43:14 +00:00
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
2022-04-25 18:49:04 +00:00
- uses: snapcore/action-build@v1
id: build
2022-04-25 14:22:42 +00:00
2022-04-25 18:49:04 +00:00
- uses: snapcore/action-publish@v1
2023-09-17 14:39:02 +00:00
env:
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.MY_SNAPCRAFT_CREDENTIALS }}
2022-04-25 18:49:04 +00:00
with:
snap: ${{ steps.build.outputs.snap }}
release: stable
2022-05-03 06:31:14 +00:00
brew:
2022-05-08 13:45:18 +00:00
runs-on: macos-latest
2022-05-03 06:31:14 +00:00
steps:
2022-05-08 13:45:18 +00:00
- 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
2022-05-03 06:31:14 +00:00
- name: Bump formulae
2023-09-17 14:39:02 +00:00
uses: Homebrew/actions/bump-formulae@master
with:
token: ${{ secrets.MY_HOMEBREW_RELEASE_GITHUB_TOKEN }}
formulae: fx