34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
name: Materialize F1.2
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- feature/f1-2-act-admin
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
materialize:
|
|
if: "!contains(github.event.head_commit.message, 'feat: F1.2 materialized')"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: feature/f1-2-act-admin
|
|
fetch-depth: 0
|
|
- name: Materialize F1.2 source
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
gunzip -c .f12-materialize/materialize.py.gz > /tmp/materialize_f12.py
|
|
echo "4535edfe30e1f78608c3d247303a66f8bd1013558119a87c1ca6b3d0a09d88c0 /tmp/materialize_f12.py" | sha256sum -c -
|
|
python /tmp/materialize_f12.py
|
|
rm -rf .f12-materialize
|
|
rm -f .github/workflows/f1-2-materialize.yml
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
git add -A
|
|
git commit -m "feat: F1.2 materialized act administration"
|
|
git push origin HEAD:feature/f1-2-act-admin
|