Skip to content

wip: Refactor CI to use GitHub actions and generic bash scripts (#77) #2

wip: Refactor CI to use GitHub actions and generic bash scripts (#77)

wip: Refactor CI to use GitHub actions and generic bash scripts (#77) #2

Workflow file for this run

name: CI
on: [ push ]
jobs:
build_app:
name: Build app
if: ${{ !contains(github.event.head_commit.message, 'skip app') }}
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: true
- name: Init runner
run: bash ./scripts/init_runner.sh ${{ github.job }}
- name: Setup workspace
env:
GITHUB_DEVELOPMENT_PAT: ${{ secrets.GH_DEVELOPMENT_PAT }}
run: bash ./scripts/setup_workspace.sh
- name: Build app
env:
SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }}
run: bash ./scripts/build_app.sh -p -r ${{ github.job }}