We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34e8251 commit 3222fecCopy full SHA for 3222fec
.github/workflows/ci.yml
@@ -4,8 +4,12 @@ on:
4
push:
5
pull_request:
6
7
+permissions:
8
+ # To create a new release
9
+ contents: write
10
+
11
jobs:
- nix:
12
+ build:
13
strategy:
14
fail-fast: false
15
matrix:
@@ -36,6 +40,18 @@ jobs:
36
40
name: git-hly-${{ matrix.os.name }}-${{ github.sha }}
37
41
path: result/bin/git-hly
38
42
43
+ release:
44
+ if: "github.ref == 'refs/heads/master'"
45
+ needs:
46
+ - build
47
+ runs-on: ubuntu-latest
48
+ steps:
49
+ - uses: actions/download-artifact@v4
50
+ - run: |
51
+ pwd
52
+ ls -R
53
+ tree
54
39
55
nocommit:
56
runs-on: ubuntu-latest
57
steps:
0 commit comments