mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 09:01:55 +00:00
29 lines
608 B
YAML
29 lines
608 B
YAML
name: Push comps updates
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- frawhide
|
|
- f41
|
|
- f40
|
|
- el10
|
|
paths:
|
|
- comps.xml
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-comps:
|
|
runs-on: ubuntu-22.04
|
|
container:
|
|
image: ghcr.io/terrapkg/builder:frawhide
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Push to subatomic
|
|
run: |
|
|
branch=${{ github.ref_name }}
|
|
ver=${branch/f/}
|
|
subatomic-cli upload-comps \
|
|
--server https://subatomic.fyralabs.com \
|
|
--token ${{ secrets.SUBATOMIC_TOKEN }} \
|
|
"terra${ver}" comps.xml
|