ci: test splitting it up into several different workflows
This commit is contained in:
parent
dfc5075ce6
commit
dd6bc96691
4 changed files with 72 additions and 3 deletions
|
@ -7,7 +7,6 @@ on:
|
|||
paths:
|
||||
- .forgejo/**/*
|
||||
- Committee/**/Handovers/*
|
||||
- Minutes/**/*
|
||||
- Committee/**/Budget/*
|
||||
- Events/**/*
|
||||
# so we can manually build the artifacts
|
||||
|
@ -20,7 +19,7 @@ jobs:
|
|||
runs-on: nix
|
||||
strategy:
|
||||
matrix:
|
||||
script: [ handovers, minutes, budget, events ]
|
||||
script: [ handovers, budget, events ]
|
||||
permissions:
|
||||
# needs this to create tags and releases
|
||||
contents: write
|
||||
|
|
28
.forgejo/workflows/push_minutes.yaml
Normal file
28
.forgejo/workflows/push_minutes.yaml
Normal file
|
@ -0,0 +1,28 @@
|
|||
name: On_Push
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
paths:
|
||||
- .forgejo/**/*
|
||||
- Minutes/**/*
|
||||
# so we can manually build the artifacts
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
# rust code must be formatted for standardisation
|
||||
pdfs:
|
||||
# build it using teh base nixos system, helps with caching
|
||||
runs-on: nix
|
||||
permissions:
|
||||
# needs this to create tags and releases
|
||||
contents: write
|
||||
steps:
|
||||
- name: Use local action
|
||||
uses: ./.forgejo/actions/build-release-pdf
|
||||
with:
|
||||
repository: ${{ gitea.repository }}
|
||||
ref_name: ${{ gitea.ref_name }}
|
||||
token: ${{ secrets.API_TOKEN_FORGEJO }}
|
||||
script: "minutes"
|
Loading…
Add table
Add a link
Reference in a new issue