ci: add shell to setup action run steps
This commit is contained in:
parent
0ea106634e
commit
48a6bb9273
1 changed files with 3 additions and 0 deletions
3
.github/actions/setup-arch/action.yml
vendored
3
.github/actions/setup-arch/action.yml
vendored
|
|
@ -6,6 +6,7 @@ runs:
|
|||
steps:
|
||||
- name: Get week
|
||||
id: date
|
||||
shell: bash
|
||||
run: echo "week=$(date +%Y-%U)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Cache packages
|
||||
|
|
@ -18,10 +19,12 @@ runs:
|
|||
pacman-
|
||||
|
||||
- name: Install deps
|
||||
shell: bash
|
||||
run: |
|
||||
pacman -Syu --needed --noconfirm sudo base-devel cmake ninja fish git clang qt6-declarative python
|
||||
|
||||
- name: Install quickshell-git
|
||||
shell: bash
|
||||
run: |
|
||||
useradd -m builder
|
||||
echo 'builder ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue