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

This commit is contained in:
ChatDisabled
2023-12-03 20:20:50 +00:00
parent 7c89dfa589
commit efa8c423c6
3 changed files with 26 additions and 39 deletions
+6 -3
View File
@@ -1,4 +1,3 @@
// Based off of https://github.com/overextended/ox_lib/blob/master/.github/actions/bump-manifest-version.js
const fs = require('fs') const fs = require('fs')
const version = process.env.TGT_RELEASE_VERSION const version = process.env.TGT_RELEASE_VERSION
@@ -6,6 +5,10 @@ const newVersion = version.replace('v', '')
const manifestFile = fs.readFileSync('fxmanifest.lua', {encoding: 'utf8'}) const manifestFile = fs.readFileSync('fxmanifest.lua', {encoding: 'utf8'})
const newFileContent = manifestFile.replace(/\bversion\s+(.*)$/gm, `version '${newVersion}'`) let newFileContent = manifestFile.replace(/\bversion\s+(.*)$/gm, `version '${newVersion}'`)
fs.writeFileSync('fxmanifest.lua', newFileContent) if (newFileContent == manifestFile) {
newFileContent = manifestFile.replace(/\bgame\s+(.*)$/gm, `game 'gta5'\nversion '${newVersion}'`);
}
fs.writeFileSync('fxmanifest.lua', newFileContent)
+1 -1
View File
@@ -104,7 +104,7 @@ Before creating enhancement suggestions, please check [this list](#before-submit
* **Make sure it doesn't already exist.** Sounds silly, but there's a lot of features built in to Qbox that people don't realize so take a look through the docs and stuff to make sure it's not already there. * **Make sure it doesn't already exist.** Sounds silly, but there's a lot of features built in to Qbox that people don't realize so take a look through the docs and stuff to make sure it's not already there.
* **Check if there's already PR which provides that enhancement.** * **Check if there's already PR which provides that enhancement.**
* **Determine which resource the enhancement should be suggested in.** Whichever resource the suggestion is about, is where it should go. If the suggestion is about Qbox as a whole, make the suggestion in the qbx_core repository. * **Determine which resource the enhancement should be suggested in.** Whichever resource the suggestion is about, is where it should go. If the suggestion is about Qbox as a whole, make the suggestion in the qbx-core repository.
* **Perform a [cursory search](https://github.com/search?q=is%3Aissue+user%3Aqbox-project++&type=issues&state=open)** to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one. * **Perform a [cursory search](https://github.com/search?q=is%3Aissue+user%3Aqbox-project++&type=issues&state=open)** to see if the enhancement has already been suggested. If it has, add a comment to the existing issue instead of opening a new one.
#### How Do I Submit A (Good) Enhancement Suggestion? #### How Do I Submit A (Good) Enhancement Suggestion?
+19 -35
View File
@@ -1,23 +1,18 @@
# Based off of https://github.com/overextended/ox_lib/blob/master/.github/workflows/release.yml name: Create New Release
name: Release
on: on:
push:
tags:
- 'v*.*.*'
workflow_dispatch: workflow_dispatch:
inputs:
version:
required: true
jobs: jobs:
create-release: create-release:
name: Build and Create Tagged Release name: Create New Release
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Install archive tools - name: Checkout Repository
run: sudo apt install zip uses: actions/checkout@v4.1.1
- name: Checkout source code
uses: actions/checkout@v2
with: with:
fetch-depth: 0 fetch-depth: 0
ref: ${{ github.event.repository.default_branch }} ref: ${{ github.event.repository.default_branch }}
@@ -27,44 +22,33 @@ jobs:
with: with:
node-version: 16.x node-version: 16.x
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Bump manifest version - name: Bump manifest version
run: node .github/actions/bump-manifest-version.js run: node .github/actions/bump-manifest-version.js
env: env:
TGT_RELEASE_VERSION: ${{ github.ref_name }} TGT_RELEASE_VERSION: ${{ inputs.version }}
- name: Push manifest change - name: Push manifest change
uses: EndBug/add-and-commit@v8 uses: EndBug/add-and-commit@latest
with: with:
add: fxmanifest.lua add: fxmanifest.lua
push: true push: true
author_name: Manifest Bumper author_name: Manifest Bumper
author_email: 41898282+github-actions[bot]@users.noreply.github.com author_email: 41898282+github-actions[bot]@users.noreply.github.com
message: 'chore: bump manifest version to ${{ github.ref_name }}' message: 'chore: bump manifest version to ${{ inputs.version }}'
- name: Update tag ref - name: Install ZIP
uses: EndBug/latest-tag@latest run: sudo apt install zip
with:
tag-name: ${{ github.ref_name }}
- name: Bundle files - name: Bundle files
run: | run: |
mkdir -p ./temp/qbx_divegear rm -rf ./.github ./.vscode ./.git
cp ./{LICENSE,README.md,fxmanifest.lua} ./temp/qbx_divegear zip -r ./${{ github.event.repository.name }}.zip ./
cp -r ./{client,locales,config,server} ./temp/qbx_divegear
cd ./temp && zip -r ../qbx_divegear.zip ./qbx_divegear
- name: Create Release - name: Create Release
uses: 'marvinpinto/action-automatic-releases@v1.2.1' uses: 'marvinpinto/action-automatic-releases@latest'
id: auto_release
with: with:
title: ${{ inputs.version }}
repo_token: '${{ secrets.GITHUB_TOKEN }}' repo_token: '${{ secrets.GITHUB_TOKEN }}'
title: ${{ env.RELEASE_VERSION }} automatic_release_tag: ${{ inputs.version }}
prerelease: false prerelease: false
files: qbx_divegear.zip files: ${{ github.event.repository.name }}.zip
env:
CI: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}