Skip to content

Commit

Permalink
add github token
Browse files Browse the repository at this point in the history
  • Loading branch information
malvads committed Dec 13, 2023
1 parent 86798ea commit 5a747bb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
run: |
git tag "latest/macos/x86_64"
git push origin "latest/macos/x86_64"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create x86_64 Release
uses: softprops/action-gh-release@v1
with:
Expand Down Expand Up @@ -65,6 +67,8 @@ jobs:
run: |
git tag "latest/macos/aarch64"
git push origin "latest/macos/aarch64"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create aarch64 Release
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
run: |
git tag "latest/macos/x86_64"
git push origin "latest/macos/x86_64"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create x86_64 Release
uses: softprops/action-gh-release@v1
with:
Expand Down Expand Up @@ -65,6 +67,8 @@ jobs:
run: |
git tag "latest/macos/arm64"
git push origin "latest/macos/arm64"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create arm64 Release
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:
run: |
git tag "latest/windows"
git push origin "latest/windows"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create Windows Release
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
Expand Down

0 comments on commit 5a747bb

Please sign in to comment.