Add "deploy" stage to .gitlab-ci.yml
This commit is contained in:
parent
76c934ba35
commit
46527b236b
1 changed files with 7 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
stages:
|
stages:
|
||||||
- build
|
- build
|
||||||
- release
|
- release
|
||||||
|
- deploy
|
||||||
|
|
||||||
Build:
|
Build:
|
||||||
stage: build
|
stage: build
|
||||||
|
|
@ -135,3 +136,9 @@ Release:
|
||||||
- name: macOS aarch64 (sha256sum)
|
- name: macOS aarch64 (sha256sum)
|
||||||
link_type: other
|
link_type: other
|
||||||
url: $CI_API_V4_URL/projects/$CI_PROJECT_ID/packages/generic/librewolf/$VERSION-$RELEASE/librewolf-$VERSION-$RELEASE.mac.aarch64.dmg.sha256sum
|
url: $CI_API_V4_URL/projects/$CI_PROJECT_ID/packages/generic/librewolf/$VERSION-$RELEASE/librewolf-$VERSION-$RELEASE.mac.aarch64.dmg.sha256sum
|
||||||
|
|
||||||
|
Update Repositories:
|
||||||
|
stage: deploy
|
||||||
|
image: curlimages/curl
|
||||||
|
script:
|
||||||
|
- curl https://shorsh.de/update_lw_repos.php?version=$(cat version)-$(cat release)&log=true&token=$REPO_DEPLOY_TOKEN
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue