mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 09:01:55 +00:00
62cd050590
(cherry picked from commit f9a1ebd7e5)
Signed-off-by: RockGrub <RockGrub@users.noreply.github.com>
28 lines
597 B
YAML
28 lines
597 B
YAML
name: Push comps updates
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- frawhide
|
|
- f41
|
|
- el10
|
|
paths:
|
|
- comps.xml
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-comps:
|
|
runs-on: ubuntu-latest
|
|
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
|