feat: Add save mlo button to UI #19
Workflow file for this run
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
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/[email protected] | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.repository.default_branch }} | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 8.6.1 | |
- name: Get variables | |
id: get_vars | |
run: | | |
echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
echo "DATE=$(date + '%D')" >> $GITHUB_OUTPUT | |
- name: Setup node | |
uses: actions/[email protected] | |
with: | |
node-version: 16.x | |
cache: 'pnpm' | |
cache-dependency-path: 'web/pnpm-lock.yaml' | |
- name: Install dependencies | |
run: pnpm i | |
working-directory: web | |
- name: Run build | |
run: pnpm build | |
working-directory: web | |
env: | |
CI: false | |
- name: Bump manifest change | |
run: node .github/actions/bump-manifest-version.js | |
env: | |
TGT_RELEASE_VERSION: ${{ github.ref_name }} | |
- name: Push manifest change | |
uses: EndBug/[email protected] | |
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: | |
ref: ${{ github.ref_name }} | |
- name: Bundle files | |
run: | | |
mkdir -p ./temp/ht_mlotool | |
mkdir -p ./temp/ht_mlotool/web/ | |
mkdir -p ./temp/ht_mlotool/saved_mlos/ | |
mkdir -p ./temp/ht_mlotool/generated_files/ | |
cp ./{LICENSE,README.md,fxmanifest.lua,utils.lua} ./temp/ht_mlotool | |
cp -r ./{docs,locales,client,server} ./temp/ht_mlotool | |
cp -r ./web/build ./temp/ht_mlotool/web/ | |
cd ./temp && zip -r ../ht_mlotool.zip ./ht_mlotool | |
- name: Create Release | |
uses: 'marvinpinto/[email protected]' | |
id: auto_release | |
with: | |
repo_token: '${{ secrets.GITHUB_TOKEN }}' | |
title: ${{ env.RELEASE_VERSION }} | |
prerelease: false | |
files: ht_mlotool.zip | |
env: | |
CI: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |