🔄 synced local '.github/' with remote 'repo-template/.github/'

This commit is contained in:
qbox-duck[bot]
2023-12-04 18:32:00 +00:00
committed by GitHub
parent 7675beb1a2
commit 9524752773
2 changed files with 29 additions and 3 deletions
+10 -3
View File
@@ -18,16 +18,23 @@ jobs:
- name: Install ZIP
run: sudo apt install zip
- name: Bundle files
run: |
rm -rf ./.github ./.vscode ./.git
zip -r ./${{ github.event.repository.name }}.zip ./
- name: Get App Token
uses: actions/create-github-app-token@v1.6.1
id: generate_token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
- name: Create Release
uses: 'marvinpinto/action-automatic-releases@latest'
with:
title: ${{ github.ref_name }}
repo_token: '${{ secrets.GITHUB_TOKEN }}'
repo_token: '${{ steps.generate_token.outputs.token }}'
prerelease: false
files: ${{ github.event.repository.name }}.zip