🔄 synced local '.github/' with remote 'repo-template/.github/'
This commit is contained in:
@@ -1,23 +1,18 @@
|
||||
# Based off of https://github.com/overextended/ox_lib/blob/master/.github/workflows/release.yml
|
||||
name: Release
|
||||
name: Create New Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*.*.*'
|
||||
workflow_dispatch:
|
||||
|
||||
inputs:
|
||||
version:
|
||||
required: true
|
||||
|
||||
jobs:
|
||||
create-release:
|
||||
name: Build and Create Tagged Release
|
||||
name: Create New Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install archive tools
|
||||
run: sudo apt install zip
|
||||
|
||||
- name: Checkout source code
|
||||
uses: actions/checkout@v2
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4.1.1
|
||||
with:
|
||||
fetch-depth: 0
|
||||
ref: ${{ github.event.repository.default_branch }}
|
||||
@@ -27,44 +22,33 @@ jobs:
|
||||
with:
|
||||
node-version: 16.x
|
||||
|
||||
- name: Set env
|
||||
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
||||
|
||||
- name: Bump manifest version
|
||||
run: node .github/actions/bump-manifest-version.js
|
||||
env:
|
||||
TGT_RELEASE_VERSION: ${{ github.ref_name }}
|
||||
TGT_RELEASE_VERSION: ${{ inputs.version }}
|
||||
|
||||
- name: Push manifest change
|
||||
uses: EndBug/add-and-commit@v8
|
||||
uses: EndBug/add-and-commit@latest
|
||||
with:
|
||||
add: fxmanifest.lua
|
||||
push: true
|
||||
author_name: Manifest Bumper
|
||||
author_email: 41898282+github-actions[bot]@users.noreply.github.com
|
||||
message: 'chore: bump manifest version to ${{ github.ref_name }}'
|
||||
|
||||
- name: Update tag ref
|
||||
uses: EndBug/latest-tag@latest
|
||||
with:
|
||||
tag-name: ${{ github.ref_name }}
|
||||
message: 'chore: bump manifest version to ${{ inputs.version }}'
|
||||
|
||||
- name: Install ZIP
|
||||
run: sudo apt install zip
|
||||
|
||||
- name: Bundle files
|
||||
run: |
|
||||
mkdir -p ./temp/qbx_divegear
|
||||
cp ./{LICENSE,README.md,fxmanifest.lua} ./temp/qbx_divegear
|
||||
cp -r ./{client,locales,config,server} ./temp/qbx_divegear
|
||||
cd ./temp && zip -r ../qbx_divegear.zip ./qbx_divegear
|
||||
rm -rf ./.github ./.vscode ./.git
|
||||
zip -r ./${{ github.event.repository.name }}.zip ./
|
||||
|
||||
- name: Create Release
|
||||
uses: 'marvinpinto/action-automatic-releases@v1.2.1'
|
||||
id: auto_release
|
||||
uses: 'marvinpinto/action-automatic-releases@latest'
|
||||
with:
|
||||
title: ${{ inputs.version }}
|
||||
repo_token: '${{ secrets.GITHUB_TOKEN }}'
|
||||
title: ${{ env.RELEASE_VERSION }}
|
||||
automatic_release_tag: ${{ inputs.version }}
|
||||
prerelease: false
|
||||
files: qbx_divegear.zip
|
||||
|
||||
env:
|
||||
CI: false
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
files: ${{ github.event.repository.name }}.zip
|
||||
Reference in New Issue
Block a user