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:
|
steps:
|
||||||
- name: Get week
|
- name: Get week
|
||||||
id: date
|
id: date
|
||||||
|
shell: bash
|
||||||
run: echo "week=$(date +%Y-%U)" >> $GITHUB_OUTPUT
|
run: echo "week=$(date +%Y-%U)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Cache packages
|
- name: Cache packages
|
||||||
|
|
@ -18,10 +19,12 @@ runs:
|
||||||
pacman-
|
pacman-
|
||||||
|
|
||||||
- name: Install deps
|
- name: Install deps
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
pacman -Syu --needed --noconfirm sudo base-devel cmake ninja fish git clang qt6-declarative python
|
pacman -Syu --needed --noconfirm sudo base-devel cmake ninja fish git clang qt6-declarative python
|
||||||
|
|
||||||
- name: Install quickshell-git
|
- name: Install quickshell-git
|
||||||
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
useradd -m builder
|
useradd -m builder
|
||||||
echo 'builder ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|
echo 'builder ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue