feat(ci): (re-)generate tag
All checks were successful
Publish nightly release / build (push) Successful in 1m12s
All checks were successful
Publish nightly release / build (push) Successful in 1m12s
This commit is contained in:
parent
45e23b3d41
commit
0320c72d3a
1 changed files with 9 additions and 0 deletions
|
@ -35,6 +35,15 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cd /nix/store
|
cd /nix/store
|
||||||
attic push "${{ vars.BINARY_CACHE_NAME }}" $(ls /nix/store --ignore='*.drv' --ignore='*fake_nixpkgs*')
|
attic push "${{ vars.BINARY_CACHE_NAME }}" $(ls /nix/store --ignore='*.drv' --ignore='*fake_nixpkgs*')
|
||||||
|
- name: (Re-)generate tag
|
||||||
|
run: |
|
||||||
|
git config --global user.email "noreply@naxdy.org"
|
||||||
|
git config --global user.name "Naxbot"
|
||||||
|
git fetch --tags
|
||||||
|
git tag -d nightly || true
|
||||||
|
git tag nightly -m "Nightly Release"
|
||||||
|
git checkout nightly
|
||||||
|
git push --set-upstream origin nightly --force
|
||||||
- name: Publish nightly release
|
- name: Publish nightly release
|
||||||
uses: https://gitea.com/actions/gitea-release-action@v1.3.0
|
uses: https://gitea.com/actions/gitea-release-action@v1.3.0
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue