We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97c535f commit 15fd1a5Copy full SHA for 15fd1a5
.github/workflows/build-access.yaml
@@ -8,7 +8,7 @@ on:
8
- 'v*'
9
10
jobs:
11
- access:
+ build:
12
runs-on: ubuntu-latest
13
env:
14
flags: ""
@@ -27,3 +27,19 @@ jobs:
27
args: release --clean ${{ env.flags }}
28
29
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
+ publish:
31
+ runs-on: ubuntu-latest
32
+ needs: build
33
+ if: ${{ startsWith(github.ref, 'refs/tags/v') }}
34
+ steps:
35
+ - uses: mislav/bump-homebrew-formula-action@v2
36
+ with:
37
+ formula-name: access
38
+ env:
39
+ COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}
40
+ - uses: vedantmgoyal2009/winget-releaser@v2
41
42
+ identifier: Indent.Access
43
+ max-versions-to-keep: 5
44
+ installers-regex: 'windows_[a-z0-9]+\.zip$'
45
+ token: ${{ secrets.WINGET_TOKEN }}
0 commit comments