Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
notthebee committed Apr 5, 2024
1 parent 3fdd71e commit 5d79257
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,10 @@ jobs:
curl https://github.com/notthebee.keys > notthebee.pub &&
ssh-copy-id -f -i notthebee.pub $EASYVPN_USERNAME@$SERVER_IPV4
- name: Archive the private SSH key (Matrix 1)
- name: Archive the private SSH key
uses: actions/upload-artifact@v3
with:
name: "private-ssh-key-{{ matrix.index }}"
name: "private-ssh-key-${{ matrix.index }}"
path: "id_vpn"

outputs:
Expand Down Expand Up @@ -314,7 +314,7 @@ jobs:
- name: Get the private SSH key artifact
uses: actions/download-artifact@v3
with:
name: "private-ssh-key-{{ matrix.index }}"
name: "private-ssh-key-${{ matrix.index }}"
path: /home/runner/.ssh

- name: Set the correct permissions for the SSH key
Expand Down Expand Up @@ -361,14 +361,13 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: "Screenshots-{{ matrix.index }}"
path: "screenshots/*.png"
name: "Screenshots-${{ matrix.index }}"
path: "screenshots"

- name: Archive the Wireguard config (Matrix 3)
if: ${{ matrix.index == '3' }}
- name: Archive the Wireguard config
uses: actions/upload-artifact@v3
with:
name: "wireguard-{{ matrix.index }}.conf"
name: "wireguard-${{ matrix.index }}.conf"
path: "*.conf"

destroy:
Expand Down

0 comments on commit 5d79257

Please sign in to comment.