Skip to content

Commit

Permalink
use v8 pakman
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksiri committed Aug 13, 2024
1 parent 9f26787 commit 60c0609
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: 'Deployment'
name: "Deployment"

on:
workflow_run:
workflow_run:
workflows: ["CI"]
branches: [master, develop]
types:
types:
- completed

jobs:
Expand All @@ -13,14 +13,14 @@ jobs:
runs-on: warp-ubuntu-latest-x64-2x
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: 'Checkout'
- name: "Checkout"
uses: actions/checkout@v4
with:
ref: ${{ github.event.workflow_run.head_branch }}
fetch-depth: 0

- name: Setup Pakman
uses: upmaru/pakman@develop
uses: upmaru/pakman@v8
with:
alpine: v3.18

Expand All @@ -32,7 +32,7 @@ jobs:
ABUILD_PRIVATE_KEY: ${{secrets.ABUILD_PRIVATE_KEY}}
ABUILD_PUBLIC_KEY: ${{secrets.ABUILD_PUBLIC_KEY}}

- name: 'Build Package'
- name: "Build Package"
run: |
cd "$GITHUB_WORKSPACE"/.apk/"$GITHUB_REPOSITORY" || exit
Expand All @@ -50,19 +50,19 @@ jobs:
name: Deploy
needs: build
runs-on: warp-ubuntu-latest-x64-2x
steps:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.workflow_run.head_branch }}
fetch-depth: 0

- uses: actions/download-artifact@v4
with:
with:
path: /home/runner/artifacts

- name: Setup Pakman
uses: upmaru/pakman@develop
uses: upmaru/pakman@v8
with:
alpine: v3.18

Expand Down

0 comments on commit 60c0609

Please sign in to comment.