mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
|
name: Publish to Buildkite
|
||
|
on:
|
||
|
workflow_call:
|
||
|
secrets:
|
||
|
BUILDKITE_TOKEN:
|
||
|
required: true
|
||
|
jobs:
|
||
|
publish:
|
||
|
name: Publish to Buildkite
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
runtime: [linux-x64, linux-arm64]
|
||
|
steps:
|
||
|
- name: Download package artifacts
|
||
|
uses: actions/download-artifact@v4
|
||
|
with:
|
||
|
name: package.${{ matrix.runtime }}
|
||
|
path: packages
|
||
|
|
||
|
- name: Publish DEB package
|
||
|
env:
|
||
|
BUILDKITE_TOKEN: ${{ secrets.BUILDKITE_TOKEN }}
|
||
|
run: |
|
||
|
FILE=$(echo packages/*.deb)
|
||
|
curl -X POST https://api.buildkite.com/v2/packages/organizations/sourcegit/registries/sourcegit-deb/packages \
|
||
|
-H "Authorization: Bearer $BUILDKITE_TOKEN" \
|
||
|
-F "file=@$FILE" \
|
||
|
--fail
|
||
|
|
||
|
- name: Publish RPM package
|
||
|
env:
|
||
|
BUILDKITE_TOKEN: ${{ secrets.BUILDKITE_TOKEN }}
|
||
|
run: |
|
||
|
FILE=$(echo packages/*.rpm)
|
||
|
curl -X POST https://api.buildkite.com/v2/packages/organizations/sourcegit/registries/sourcegit-rpm/packages \
|
||
|
-H "Authorization: Bearer $BUILDKITE_TOKEN" \
|
||
|
-F "file=@$FILE" \
|
||
|
--fail
|