mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-07-12 17:06:24 +02:00
Move artifact files to root
This commit is contained in:
parent
a969163f79
commit
f90136c9a3
1 changed files with 8 additions and 1 deletions
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
@ -99,7 +99,14 @@ jobs:
|
||||||
|
|
||||||
- name: Extract Nix Store Archive
|
- name: Extract Nix Store Archive
|
||||||
run: |
|
run: |
|
||||||
tar -xzf nix-store.tar.gz -C /
|
mkdir -p ${{ github.workspace }}/nix-store
|
||||||
|
tar -xzf nix-store.tar.gz -C ${{ github.workspace }}/nix-store
|
||||||
|
|
||||||
|
- name: Move Nix Store to Proper Location
|
||||||
|
run: |
|
||||||
|
sudo rsync -a ${{ github.workspace }}/nix-store/ /nix/store/
|
||||||
|
sudo chown -R root:root /nix/store
|
||||||
|
sudo restorecon -Rv /nix/store # If SELinux is enforcing
|
||||||
|
|
||||||
- name: Sync repository
|
- name: Sync repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
Loading…
Add table
Reference in a new issue