Skip to content

fix(web/App): block dragstart event #165

fix(web/App): block dragstart event

fix(web/App): block dragstart event #165

Workflow file for this run

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.1.1
- 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: "web/pnpm-lock.yaml"
- name: Install dependencies
run: pnpm i --frozen-lockfile
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
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/ox_inventory
mkdir -p ./temp/ox_inventory/web
cp ./{server.lua,README.md,LICENSE,fxmanifest.lua,client.lua,init.lua} ./temp/ox_inventory
cp -r ./{setup,modules,data,locales} ./temp/ox_inventory
cp -r ./web/build ./temp/ox_inventory/web/build
cp -r ./web/images ./temp/ox_inventory/web/images
cd ./temp && zip -r ../ox_inventory.zip ./ox_inventory
- name: Create Release
uses: "marvinpinto/[email protected]"
id: auto_release
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
title: "${{ env.RELEASE_VERSION }}"
prerelease: false
files: ox_inventory.zip
env:
CI: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}