Skip to content

Commit 57937d9

Browse files
Add GitHub Action to check if ISO can be built.
1 parent 8adf1de commit 57937d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
id: create_release # Adding an ID to reference the release step
5555
uses: actions/[email protected]
5656
env:
57-
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
57+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5858
with:
5959
tag_name: v${{ github.run_id }}-release
6060
release_name: "Arch Linux Release"
@@ -67,9 +67,9 @@ jobs:
6767
- name: Upload ISO to GitHub Release
6868
uses: actions/upload-release-asset@v1
6969
env:
70-
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
70+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7171
with:
72-
upload_url: ${{ steps.create_release.outputs.upload_url }} # Fixing the upload_url reference
72+
upload_url: ${{ steps.create_release.outputs.upload_url }}
7373
asset_path: ${{ github.workspace }}/Arch.iso
7474
asset_name: Arch.iso
7575
asset_content_type: application/octet-stream

0 commit comments

Comments
 (0)