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

This commit is contained in:
qbox-duck[bot]
2023-12-04 11:47:53 +00:00
committed by GitHub
parent f673f943bd
commit 92a7045f0c
+8 -4
View File
@@ -11,11 +11,18 @@ jobs:
name: Create New Release name: Create New Release
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- 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: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4.1.1 uses: actions/checkout@v4.1.1
with: with:
fetch-depth: 0 fetch-depth: 0
ref: ${{ github.event.repository.default_branch }} token: ${{ steps.generate_token.outputs.token }}
- name: Setup node - name: Setup node
uses: actions/setup-node@v2 uses: actions/setup-node@v2
@@ -32,10 +39,7 @@ jobs:
with: with:
add: fxmanifest.lua add: fxmanifest.lua
push: true push: true
author_name: Manifest Bumper
author_email: 41898282+github-actions[bot]@users.noreply.github.com
message: 'chore: bump manifest version to ${{ inputs.version }}' message: 'chore: bump manifest version to ${{ inputs.version }}'
tag_push: '--force'
- name: Install ZIP - name: Install ZIP
run: sudo apt install zip run: sudo apt install zip