-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
84 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,84 @@ | ||
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@v3 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.repository.default_branch }} | ||
|
||
- name: Get variables | ||
id: get_vars | ||
run: | | ||
echo '::set-output name=SHORT_SHA::$(git rev-parse --short HEAD)' | ||
echo '::set-output name=DATE::$(date +'%D')' | ||
- name: 'Setup node' | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 17 | ||
cache: 'npm' | ||
cache-dependency-path: web/package-lock.json | ||
|
||
- name: Install dependencies | ||
run: npm i | ||
working-directory: web | ||
|
||
- name: Run build | ||
run: npm run build | ||
working-directory: web | ||
env: | ||
CI: false | ||
|
||
- 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/esx_hud | ||
mkdir -p ./temp/esx_hud/web | ||
cp ./fxmanifest.lua ./temp/esx_hud | ||
cp -r ./{client,locales,server,stream} ./temp/esx_hud | ||
cp -r ./web/dist ./temp/esx_hud/web/dist | ||
cd ./temp && zip -r ../esx_hud.zip ./esx_hud | ||
- name: Create Release | ||
uses: 'marvinpinto/[email protected]' | ||
id: auto_release | ||
with: | ||
repo_token: '${{ secrets.GITHUB_TOKEN }}' | ||
title: '${{ env.RELEASE_VERSION }}' | ||
prerelease: false | ||
files: esx_hud.zip | ||
|
||
env: | ||
CI: false | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |