This commit is contained in:
parent
88cc8bf491
commit
3514e24a09
4 changed files with 10 additions and 4 deletions
|
@ -23,13 +23,18 @@ jobs:
|
||||||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
|
- name: setup .ssh directory
|
||||||
|
run: mkdir -p /home/ubuntu/.ssh && chmod 700 /home/ubuntu/.ssh
|
||||||
- name: Write ssh key
|
- name: Write ssh key
|
||||||
id: sshkey
|
id: sshkey
|
||||||
uses: https://github.com/timheuer/base64-to-file@adaa40c0c581f276132199d4cf60afa07ce60eac # v1
|
# uses: https://github.com/timheuer/base64-to-file@adaa40c0c581f276132199d4cf60afa07ce60eac # v1
|
||||||
|
uses: timheuer/base64-to-file@adaa40c0c581f276132199d4cf60afa07ce60eac # v1
|
||||||
with:
|
with:
|
||||||
encodedString: "${{ secrets.SSH_USER }}"
|
encodedString: "${{ secrets.SSH_USER }}"
|
||||||
fileName: id_ed25519
|
fileName: id_ed25519
|
||||||
fileDir: ~/.ssh
|
fileDir: /home/ubuntu/.ssh
|
||||||
|
- name: chmod id_ed25519
|
||||||
|
run: chmod 600 /home/ubuntu/.ssh/id_ed25519
|
||||||
- name: Renovate
|
- name: Renovate
|
||||||
uses: ./.forgejo/actions/renovate
|
uses: ./.forgejo/actions/renovate
|
||||||
with:
|
with:
|
||||||
|
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -18,5 +18,5 @@ omniconfig.yaml
|
||||||
config.xml
|
config.xml
|
||||||
.idea/
|
.idea/
|
||||||
.env
|
.env
|
||||||
.secrets
|
*.secrets
|
||||||
.github
|
.github
|
||||||
|
|
|
@ -5,4 +5,4 @@ tasks:
|
||||||
run:
|
run:
|
||||||
desc: Run ACT with custom image
|
desc: Run ACT with custom image
|
||||||
cmds:
|
cmds:
|
||||||
- act -P docker=catthehacker/ubuntu:act-latest
|
- act -P docker=catthehacker/ubuntu:act-latest --secret-file .secrets -s GH_TOKEN -s RENOVATE_TOKEN -s SSH_USER
|
||||||
|
|
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
|
@ -21,4 +21,5 @@
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
},
|
},
|
||||||
"editor.fontFamily": "FiraCode Nerd Font",
|
"editor.fontFamily": "FiraCode Nerd Font",
|
||||||
|
"editor.hover.delay": 1500,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue