initial commit
This commit is contained in:
15
.github/actions/upload-bin/action.yml
vendored
Normal file
15
.github/actions/upload-bin/action.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
name: Upload bin assets
|
||||
description: Uploads the provider and tfgen binaries to `bin/`.
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Tar provider binaries
|
||||
shell: bash
|
||||
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{ github.workspace }}/bin/ pulumi-resource-xyz pulumi-tfgen-xyz
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
|
||||
with:
|
||||
name: xyz-provider.tar.gz
|
||||
path: ${{ github.workspace }}/bin/provider.tar.gz
|
||||
retention-days: 30
|
||||
Reference in New Issue
Block a user