This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
move to codeberg #234
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 is a basic workflow to help you get started with Actions | |
name: Build | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [main] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
# We need Node.js v12.x | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3.6.0 | |
with: | |
node-version: 18 | |
- name: Install packages | |
run: | | |
yarn install | |
- name: Build things | |
run: | | |
yarn build | |
- name: Zip things and build OmniSD ZIP | |
run: | | |
cd build/ | |
zip -r $GITHUB_SHA.zip * | |
echo {\"version\": 1, \"manifestURL\": \"app://chooj.bananahackers.net/manifest.webapp\"} > metadata.json | |
cp $GITHUB_SHA.zip application.zip | |
zip $GITHUB_SHA-omnisd.zip metadata.json application.zip | |
- name: Upload the ZIP | |
env: | |
UPLOAD_URL_SECRET: ${{ secrets.UPLOAD_URL_SECRET }} | |
run: | | |
cd build/ | |
curl -F file=@$GITHUB_SHA.zip $UPLOAD_URL_SECRET | |
curl -F file=@$GITHUB_SHA-omnisd.zip $UPLOAD_URL_SECRET |