Publish Build #12
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 Build | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install dependencies | |
run: npm install | |
- name: Run build | |
run: npm run build | |
- name: Get version from .version file | |
id: get_version | |
run: echo "VERSION=$(cat .version)" >> $GITHUB_ENV | |
- name: Zip the dist directory | |
run: | | |
zip -r "${{ env.VERSION }}.zip" ./dist | |
- name: Create Release | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: "${{ env.VERSION }}" | |
files: "${{ env.VERSION }}.zip" | |
env: | |
GITHUB_TOKEN: ${{ secrets.CUBEDOOD_TOKEN }} |