This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
remove duplicate variable, unused variables and fix var #36
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: | |
branches: | |
- main | |
paths: | |
- 'src/**' | |
workflow_dispatch: | |
permissions: write-all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18.x' | |
- run: npm install | |
- run: npm run gulp | |
- name: push | |
continue-on-error: true | |
if: ${{ !env.ACT }} | |
run: | | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
git add dist/ | |
git commit -m "Deploy distribition files" | |
git push | |
- name: Semantic Release | |
id: tag | |
uses: hennejg/[email protected] | |
with: | |
github_token : ${{ secrets.GITHUB_TOKEN }} | |
tag_prefix: "" | |
- name: release if new tags | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VERSION: ${{ steps.tag.outputs.new_version }} | |
with: | |
tag_name: ${{ steps.tag.outputs.new_version }} | |
name: ${{ steps.tag.outputs.new_tag }} | |
body: ${{ steps.tag.outputs.changelog }} | |
files: | | |
dist/* | |