Skip to content

Commit

Permalink
try agasin
Browse files Browse the repository at this point in the history
  • Loading branch information
jackietung-redpanda committed Aug 30, 2024
1 parent 9da8d13 commit 905782d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/actions/upload_managed_plugin/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ inputs:
aws_s3_bucket:
required: true
artifacts_file:
description: Abs path to goreleaser artifacts.json
required: true
metadata_file:
description: Abs path to goreleaser metadata.json
required: true
plugin_name:
required: true
Expand Down Expand Up @@ -52,8 +54,8 @@ runs:
run: |
DRY_RUN_FLAG=${{ inputs.dry_run && '--dry-run' || '' }}
./plugin_uploader.py upload-archives \
--artifacts-file target/dist/artifacts.json \
--metadata-file target/dist/metadata.json \
--artifacts-file=${{ inputs.artifacts_file }} \
--metadata-file=${{ inputs.metadata_file }} \
--project-root-dir $(pwd) \
--region=${{ inputs.aws_region }} \
--bucket=${{ inputs.aws_s3_bucket }} \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_rpk_connect_plugin_dry_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
aws_secret_access_key: "TODO"
aws_region: "us-west-2"
aws_s3_bucket: "rpk-plugins-repo"
artifacts_file: target/dist/artifacts.json
metadata_file: target/dist/metadata.json
artifacts_file: ${{ github.workspace }}/target/dist/artifacts.json
metadata_file: ${{ github.workspace }}/target/dist/metadata.json
plugin_name: "connect"
goos: linux,darwin
goarch: amd64,arm64
Expand Down

0 comments on commit 905782d

Please sign in to comment.