Skip to content

Commit

Permalink
feat: release and versioning automation (#121)
Browse files Browse the repository at this point in the history
* feat: release and versioning automation

* updated file/folders to build
  • Loading branch information
Manason committed Sep 26, 2023
1 parent 24cb9b7 commit 5af747b
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/actions/bump-manifest-version.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Based off of https://github.com/overextended/ox_lib/blob/master/.github/actions/bump-manifest-version.js
import { readFileSync, writeFileSync } from 'fs'

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

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

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

writeFileSync('fxmanifest.lua', newFileContent)
68 changes: 68 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Based off of https://github.com/overextended/ox_lib/blob/master/.github/workflows/release.yml
name: Release

on:
push:
tags:
- 'v*.*.*'

jobs:
create-release:
name: Build and Create Tagged Release
runs-on: ubuntu-latest
steps:
- name: Install archive tools
run: sudo apt install zip

- name: Checkout source code
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.event.repository.default_branch }}

- name: Setup node
uses: actions/setup-node@v2
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 }}

- name: Push manifest change
uses: EndBug/add-and-commit@v8
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 }}

- name: Bundle files
run: |
mkdir -p ./temp/qbx_core
cp ./{LICENSE,README.md,fxmanifest.lua,config.lua,import.lua,qbx_core.sql} ./temp/qbx_core
cp -r ./{client,locale,modules,server,shared,bridge} ./temp/qbx_core
cd ./temp && zip -r ../qbx_core.zip ./qbx_core
- name: Create Release
uses: 'marvinpinto/action-automatic-releases@v1.2.1'
id: auto_release
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
title: ${{ env.RELEASE_VERSION }}
prerelease: false
files: qbx_core.zip

env:
CI: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5af747b

Please sign in to comment.