mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-25 21:07:20 -08:00
43928936bc
* added and used new github action for publishing packages to packagecloud * publish-packages.yml WIP * publish-packages.yml now uses curl push * fix naming from packagecloud to buildkite * Add debug logs to publish-packages.yml * fix package path * change repo name to sourcegit * fixed unused code * added --fail to curl pushes * Remove leftowers from release.yml
39 lines
1.1 KiB
YAML
39 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
|