We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6832a5 commit 6589fecCopy full SHA for 6589fec
1 file changed
.github/workflows/build_and_test.yml
@@ -11,7 +11,7 @@ jobs:
11
steps:
12
- uses: actions/checkout@v4
13
with:
14
- submodules: recursive
+ fetch-depth: 0
15
16
- name: Setup .NET
17
uses: actions/setup-dotnet@v4
@@ -27,6 +27,14 @@ jobs:
27
- name: Run publish script
28
run: ./publish-nix.sh -d
29
30
+ - name: Update rolling tag
31
+ run: |
32
+ git config user.name "github-actions[bot]"
33
+ git config user.email "github-actions[bot]@users.noreply.github.com"
34
+ git tag -f rolling
35
+ git push origin :refs/tags/rolling || true
36
+ git push origin rolling --force
37
+
38
- name: Upload to rolling
39
uses: ncipollo/release-action@v1.14.0
40
0 commit comments