chore: update relase.yml #8
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/checkout@v2 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.repository.default_branch }} | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 8.6.1 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'pnpm' | |
cache-dependency-path: 'web/pnpm-lock.yaml' | |
- name: Set env | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Install dependencies | |
run: pnpm install | |
working-directory: web | |
- name: Run build | |
run: pnpm 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 | |
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/m_loading | |
mkdir -p ./temp/m_loading/web/ | |
cp ./{LICENSE,README.md,fxmanifest.lua} ./temp/m_loading | |
cp -r ./server ./temp/m_loading | |
cp -r ./web/build ./temp/m_loading/web/ | |
cd ./temp && zip -r ../m_loading.zip ./m_loading | |
- name: Create Release | |
uses: 'marvinpinto/[email protected]' | |
id: auto_release | |
with: | |
repo_token: '${{ secrets.GITHUB_TOKEN }}' | |
title: ${{ env.RELEASE_VERSION }} | |
prerelease: false | |
files: m_loading.zip | |
env: | |
CI: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |