Compare commits
No commits in common. "83a17b59e1601dee25f5078801d28c974c68f167" and "ea5da5a9064c79d926acda943eebe5ad87662138" have entirely different histories.
83a17b59e1
...
ea5da5a906
2 changed files with 25 additions and 1 deletions
|
@ -16,7 +16,7 @@ jobs:
|
||||||
echo "$SSH_KEY" > forgejo
|
echo "$SSH_KEY" > forgejo
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
SSH_KEY: ${{secrets.SSH_DEPLOY_KEY}}
|
SSH_KEY: ${{secrets.TEST_SSH_DEPLOY_KEY}}
|
||||||
- name: deploy
|
- name: deploy
|
||||||
run: |
|
run: |
|
||||||
cd .ssh
|
cd .ssh
|
||||||
|
|
24
.forgejo/workflows/nix-flake-update.yml
Normal file
24
.forgejo/workflows/nix-flake-update.yml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
name: nix flake update
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 4 1 * *"
|
||||||
|
jobs:
|
||||||
|
update:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: install nix action
|
||||||
|
uses: https://github.com/DeterminateSystems/nix-installer-action@v5
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GH_TOKEN }}
|
||||||
|
- name: create branch
|
||||||
|
run: |
|
||||||
|
git branch update-flake-lock
|
||||||
|
git checkout update-flake-lock
|
||||||
|
- name: update flake.lock
|
||||||
|
run: nix flake update
|
||||||
|
- name: commit changes
|
||||||
|
run: git
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue