Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CsokiHUN committed Jan 30, 2023
1 parent 1a0b767 commit d18cd34
Showing 1 changed file with 84 additions and 0 deletions.
84 changes: 84 additions & 0 deletions .github/workflows/release.yml
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 }}

0 comments on commit d18cd34

Please sign in to comment.