mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 12:19:09 +00:00
fix: echo first then base64 vdecode
This commit is contained in:
parent
76e3c9e7c9
commit
41a639eda5
1 changed files with 1 additions and 1 deletions
2
.github/workflows/aur.yml
vendored
2
.github/workflows/aur.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
||||||
SKIP_LOGIN: true
|
SKIP_LOGIN: true
|
||||||
|
|
||||||
- name: Setup SSH Credentials
|
- name: Setup SSH Credentials
|
||||||
run: base64 -d ${{ secrets.SSH_CREDS }} | tar -xzvf - -C ~/ssh_creds
|
run: echo ${{ secrets.SSH_CREDS }} | base64 -d | tar -xzvf - -C ~/ssh_creds
|
||||||
|
|
||||||
- name: AUR Routine
|
- name: AUR Routine
|
||||||
run: docker build -t aur_routine package/aur && docker run aur_routine
|
run: docker build -t aur_routine package/aur && docker run aur_routine
|
||||||
|
|
Loading…
Reference in a new issue