Skip to content

Commit

Permalink
Fix deploy-system action
Browse files Browse the repository at this point in the history
A new version of `actions-nerves-system` was created which switched to
using `gh` CLI instead of the old external `ghr`.

This adjusts the `deploy-system` action setup to support that and have
the right permissions to post the release
  • Loading branch information
jjcarstens authored and fhunleth committed Sep 8, 2024
1 parent 446aafa commit 95a7252
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,12 @@ jobs:
needs: [build-system]
if: github.ref_type == 'tag'
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: gridpoint-com/actions-nerves-system@v1
- name: Deploy nerves_system
uses: ./.actions/deploy-system
with:
github-token: ${{ secrets.ARTIFACT_GITHUB_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 95a7252

Please sign in to comment.