Skip to content

Commit

Permalink
🔄 synced local '.github/' with remote 'repo-template/.github/'
Browse files Browse the repository at this point in the history
  • Loading branch information
ChatDisabled committed Dec 3, 2023
1 parent f6840ac commit eb9ea18
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/actions/bump-manifest-version.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const fs = require('fs')

const version = process.env.TGT_RELEASE_VERSION
const newVersion = version.replace('v', '')

const manifestFile = fs.readFileSync('fxmanifest.lua', {encoding: 'utf8'})

let newFileContent = manifestFile.replace(/\bversion\s+(.*)$/gm, `version '${newVersion}'`)

if (newFileContent == manifestFile) {
newFileContent = manifestFile.replace(/\bgame\s+(.*)$/gm, `game 'gta5'\nversion '${newVersion}'`);
}

fs.writeFileSync('fxmanifest.lua', newFileContent)
54 changes: 54 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Create New Release

on:
workflow_dispatch:
inputs:
version:
required: true

jobs:
create-release:
name: Create New Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/[email protected]
with:
fetch-depth: 0
ref: ${{ github.event.repository.default_branch }}

- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 16.x

- name: Bump manifest version
run: node .github/actions/bump-manifest-version.js
env:
TGT_RELEASE_VERSION: ${{ inputs.version }}

- name: Push manifest change
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 ${{ inputs.version }}'

- 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: Create Release
uses: 'marvinpinto/action-automatic-releases@latest'
with:
title: ${{ inputs.version }}
repo_token: '${{ secrets.GITHUB_TOKEN }}'
automatic_release_tag: ${{ inputs.version }}
prerelease: false
files: ${{ github.event.repository.name }}.zip

0 comments on commit eb9ea18

Please sign in to comment.