-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(create-release): add create-release workflow
- Loading branch information
1 parent
b05f39c
commit b2f37e2
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
const fs = require('fs'); | ||
|
||
const version = process.env.TGT_RELEASE_VERSION; | ||
const newVersion = version.replace('v', ''); | ||
|
||
const manifestFile = fs.readFileSync('fxmanifest.lua', { encoding: 'utf8' }); | ||
|
||
const newFileContent = manifestFile.replace(/\bversion\s+(.*)$/gm, `version '${newVersion}'`); | ||
|
||
fs.writeFileSync('fxmanifest.lua', newFileContent); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: Create release | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*.*.*' | ||
|
||
jobs: | ||
create-release: | ||
name: Package 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: 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/ox_target | ||
cp ./{LICENSE,README.md,fxmanifest.lua} ./temp/ox_target | ||
cp -r ./{client,server,web} ./temp/ox_target | ||
cd ./temp && zip -r ../ox_target.zip ./ox_target | ||
- 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: ox_target.zip | ||
|
||
env: | ||
CI: false | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |