mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 17:11:56 +00:00
24 lines
491 B
YAML
24 lines
491 B
YAML
name: Push comps updates
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- comps.xml
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-comps:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/terrapkg/builder:main
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Push to subatomic
|
|
run: |
|
|
subatomic-cli upload-comps \
|
|
--server https://subatomic.fyralabs.com \
|
|
--token ${{ secrets.SUBATOMIC_TOKEN }} \
|
|
terra37 comps.xml
|