Tweak github action #16
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
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | |
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages | |
name: Build | |
on: | |
push: | |
branches: | |
- master | |
defaults: | |
run: | |
shell: bash | |
working-directory: src/366x366 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- name: Delete package.json | |
run: rm -f src/366x366/package.json | |
- name: Move Pre-Release package.json | |
run: rm -f mv src/366x366/pr-package.json src/366x366/package.json | |
- name: Pre-Release Install | |
run: npm install | |
- name: Pre-Release Build | |
run: npx fitbit-build | |
- name: Rename Pre-Release fba | |
run: rm -f mv src/366x366/build/app.fba src/366x366/publish/pr-fitbit-overview.fba | |
- name: Delete package.json | |
run: rm -f src/366x366/package.json | |
- name: Move Release package.json | |
run: rm -f mv src/366x366/real-package.json src/366x366/package.json | |
- name: Release Install | |
run: npm install | |
- name: Release Build | |
run: npx fitbit-build | |
- name: Rename Pre-Release fba | |
run: rm -f mv src/366x366/build/app.fba src/366x366/publish/fitbit-overview.fba | |
- name: Upload Publish Files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: fitbit-overview | |
path: src/366x366/publish/*.fba |