ci(release): push updates to repo #85
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: Build | |
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: | |
token: ${{ secrets.PAT_TOKEN }} | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 8.7.5 | |
- 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@v2 | |
with: | |
node-version: 16.x | |
cache: 'pnpm' | |
cache-dependency-path: 'pnpm-lock.yaml' | |
- name: Install dependencies | |
run: pnpm i --frozen-lockfile | |
- name: Run build | |
run: pnpm build | |
env: | |
TGT_RELEASE_VERSION: ${{ github.ref_name }} | |
- name: Update repository | |
run: | | |
git config --global user.name "GitHub Actions" | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git add . | |
git commit -am '${{ github.ref_name }}' | |
git push | |
- name: Bundle files | |
run: | | |
mkdir -p ./temp/oxmysql | |
mkdir -p ./temp/oxmysql/web/ | |
mkdir -p ./temp/oxmysql/lib/ | |
cp ./{LICENSE,README.md,fxmanifest.lua,ui.lua} ./temp/oxmysql | |
cp ./lib/MySQL.lua ./temp/oxmysql/lib | |
cp -r ./dist ./temp/oxmysql | |
cp -r ./web/build ./temp/oxmysql/web/ | |
cd ./temp && zip -r ../oxmysql.zip ./oxmysql | |
- name: Create Release | |
uses: 'marvinpinto/[email protected]' | |
id: auto_release | |
with: | |
repo_token: '${{ secrets.GITHUB_TOKEN }}' | |
title: '${{ env.RELEASE_VERSION }}' | |
prerelease: false | |
files: oxmysql.zip | |
env: | |
CI: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |