Bump v1 to v1.0.5 #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: Publish to GitHub Releases | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
build-n-publish-to-github: | |
name: Build and publish to GitHub Releases | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '10.x' | |
- name: Bundle the code, full version to asana.js and minified to asana-min.js | |
run: | | |
npm i [email protected] | |
gulp bundle | |
- name: Publish to GitHub Releases | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
dist/asana.js | |
dist/asana-min.js |