fix typo
This commit is contained in:
parent
82c937215a
commit
48aa7670e5
1 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@ pipeline:
|
||||||
when:
|
when:
|
||||||
- event: cron
|
- event: cron
|
||||||
- event: manual
|
- event: manual
|
||||||
update-${PACCKAGE}:
|
update-${PACKAGE}:
|
||||||
image: nixos/nix
|
image: nixos/nix
|
||||||
commands:
|
commands:
|
||||||
- mkdir -p /etc/nix
|
- mkdir -p /etc/nix
|
||||||
|
@ -34,7 +34,7 @@ pipeline:
|
||||||
- mkdir -p /tmp2
|
- mkdir -p /tmp2
|
||||||
- chmod 1777 /tmp2
|
- chmod 1777 /tmp2
|
||||||
- export TMPDIR=/tmp2
|
- export TMPDIR=/tmp2
|
||||||
- yes '' | nix-shell ./scripts/update.nix --argstr path ${PACCKAGE}
|
- yes '' | nix-shell ./scripts/update.nix --argstr path ${PACKAGE}
|
||||||
when:
|
when:
|
||||||
- event: cron
|
- event: cron
|
||||||
- event: manual
|
- event: manual
|
||||||
|
@ -63,7 +63,7 @@ pipeline:
|
||||||
- git config --global "commit.gpgSign" "true"
|
- git config --global "commit.gpgSign" "true"
|
||||||
- git add .
|
- git add .
|
||||||
- git commit -am "Update flake"
|
- git commit -am "Update flake"
|
||||||
- git push --force origin main:update-${PACCKAGE}
|
- git push --force origin main:update-${PACKAGE}
|
||||||
secrets:
|
secrets:
|
||||||
- gpg_key
|
- gpg_key
|
||||||
- ssh_key
|
- ssh_key
|
||||||
|
@ -74,7 +74,7 @@ pipeline:
|
||||||
image: nixery.dev/shell/curl
|
image: nixery.dev/shell/curl
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
echo '{ "assignee": "darkkirb", "base": "main", "head": "update-${PACCKAGE}", "title": "Update flake", "body": "" }' | curl -X POST -H "Authorization: token $GITEA_TOKEN" -H "Content-Type: application/json" --data-binary @- "https://git.chir.rs/api/v1/repos/$CI_REPO_OWNER/$CI_REPO_NAME/pulls"
|
echo '{ "assignee": "darkkirb", "base": "main", "head": "update-${PACKAGE}", "title": "Update flake", "body": "" }' | curl -X POST -H "Authorization: token $GITEA_TOKEN" -H "Content-Type: application/json" --data-binary @- "https://git.chir.rs/api/v1/repos/$CI_REPO_OWNER/$CI_REPO_NAME/pulls"
|
||||||
secrets:
|
secrets:
|
||||||
- gitea_token
|
- gitea_token
|
||||||
when:
|
when:
|
||||||
|
|
Reference in a new issue