v2.2.0: This cart is a complete flop; maybe I can fix that #19
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: Build flashcard-bootstrap Release | |
on: | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: skylyrac/blocksds:slim-latest | |
name: Build with Docker using BlocksDS | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install needed packages | |
run: | | |
apt update | |
apt install -y clang zip | |
- name: Make flashcard-bootstrap | |
run: | | |
chmod +x build.sh | |
./build.sh | |
- name: Prepare for build publishing | |
run: | | |
mkdir -p ~/artifacts | |
cp bootstrap.zip ~/artifacts | |
- name: Publish build to GH Actions | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ~/artifacts/* | |
name: build | |
- name: Make release archive | |
run: | | |
cp devnotes.txt bootstrap/devnotes.txt | |
cd bootstrap | |
zip -r bootstrap.zip * | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: bootstrap.zip |