mirror of
https://github.com/DeterminateSystems/magic-nix-cache-action.git
synced 2024-12-23 13:32:03 +01:00
Publish to IDS
This commit is contained in:
parent
d6ee674f6e
commit
2f4bc106a3
1 changed files with 24 additions and 0 deletions
24
.github/workflows/publish.yml
vendored
Normal file
24
.github/workflows/publish.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
name: Publish
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- run: |
|
||||||
|
mkdir artifacts
|
||||||
|
git archive --format=tar.gz HEAD -o ./artifacts/universal.tar.gz
|
||||||
|
|
||||||
|
- uses: DeterminateSystems/push-artifact-ids@main
|
||||||
|
with:
|
||||||
|
s3_upload_role: ${{ secrets.AWS_S3_UPLOAD_ROLE }}
|
||||||
|
bucket: ${{ secrets.AWS_S3_UPLOAD_BUCKET }}
|
||||||
|
directory: ./artifacts
|
||||||
|
ids_project_name: magic-nix-cache-action-priv
|
||||||
|
ids_binary_prefix: action.tar.gz
|
Loading…
Reference in a new issue