chore: synced local './' with remote 'repo-template/'
This commit is contained in:
@@ -1,5 +1,13 @@
|
|||||||
name: Lint
|
name: Lint
|
||||||
on: [push, pull_request_target]
|
on:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- '*.lua'
|
||||||
|
- '.github/workflows/lint.yml'
|
||||||
|
pull_request_target:
|
||||||
|
paths:
|
||||||
|
- '*.lua'
|
||||||
|
- '.github/workflows/lint.yml'
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
name: Lint Resource
|
name: Lint Resource
|
||||||
|
|||||||
@@ -34,10 +34,24 @@ jobs:
|
|||||||
app-id: ${{ secrets.APP_ID }}
|
app-id: ${{ secrets.APP_ID }}
|
||||||
private-key: ${{ secrets.PRIVATE_KEY }}
|
private-key: ${{ secrets.PRIVATE_KEY }}
|
||||||
|
|
||||||
- name: Create Release
|
- name: Update CHANGELOG
|
||||||
uses: marvinpinto/action-automatic-releases@latest
|
id: changelog
|
||||||
|
uses: requarks/changelog-action@v1
|
||||||
with:
|
with:
|
||||||
title: ${{ github.ref_name }}
|
token: ${{ steps.generate_token.outputs.token }}
|
||||||
repo_token: '${{ steps.generate_token.outputs.token }}'
|
tag: ${{ github.ref_name }}
|
||||||
prerelease: false
|
includeInvalidCommits: true
|
||||||
files: ${{ github.event.repository.name }}.zip
|
useGitmojis: false
|
||||||
|
writeToFile: false
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
uses: ncipollo/release-action@v1.14.0
|
||||||
|
with:
|
||||||
|
allowUpdates: true
|
||||||
|
draft: false
|
||||||
|
makeLatest: true
|
||||||
|
name: ${{ github.ref_name }}
|
||||||
|
tag: ${{ github.ref_name }}
|
||||||
|
body: ${{ steps.changelog.outputs.changes }}
|
||||||
|
artifacts: ${{ github.event.repository.name }}.zip
|
||||||
|
token: ${{ steps.generate_token.outputs.token }}
|
||||||
|
|||||||
@@ -39,8 +39,4 @@ jobs:
|
|||||||
add: fxmanifest.lua
|
add: fxmanifest.lua
|
||||||
push: true
|
push: true
|
||||||
message: 'chore: bump manifest version to ${{ inputs.version }}'
|
message: 'chore: bump manifest version to ${{ inputs.version }}'
|
||||||
|
tag: ${{ inputs.version }}
|
||||||
- name: Push Git Tag
|
|
||||||
run: |
|
|
||||||
git tag ${{ inputs.version }}
|
|
||||||
git push origin ${{ inputs.version }}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user