Skip to content

Commit

Permalink
ci: bring back deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cwillisf committed Oct 18, 2024
1 parent 677ff6f commit 384a6fa
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
38 changes: 38 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: build-scratch-blocks
on:
push: # Runs whenever a commit is pushed to the repository
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
jobs:
setup:
runs-on: ubuntu-latest
env:
PROJECT_PATH: ./scratch-blocks
steps:
- run: |
for F in chrome chromium chromedriver; do
which $F && $F --version || echo Not found: $F
done
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: Check Python version
run: python --version
- name: Setup Node
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3
with:
node-version-file: '.nvmrc'
# TODO: tests
- name: Install Node Dependencies
run: npm ci
- name: Build
run: npm run build
# - name: Deploy playground to GitHub Pages
# uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 # v3
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./gh-pages
# full_commit_message: "Build for ${{ github.sha }} ${{ github.event.head_commit.message }}"
# enable_jekyll: true
- name: Run semantic-release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx --no -- semantic-release
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Before this un-forked version of `scratch-blocks` is fully ready for release, we

- [ ] Hook up i18n / l10n
- [x] Fix or remove Husky
- [ ] Set up CI & CD
- [x] Set up CI & CD
- [ ] Wait for Blockly v12 release, then update Blockly dependencies accordingly

Things we need to do before we consider this project "done" but could wait until after the initial release:
Expand Down

0 comments on commit 384a6fa

Please sign in to comment.