Fixup my-flake-is-too-big option #362
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release PR | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- labeled | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yaml | |
if: | | |
github.event.pull_request.head.repo.full_name == 'DeterminateSystems/flakehub-push' | |
&& ( | |
(github.event.action == 'labeled' && github.event.label.name == 'upload to s3') | |
|| (github.event.action != 'labeled' && contains(github.event.pull_request.labels.*.name, 'upload to s3')) | |
) | |
release: | |
needs: build | |
concurrency: release | |
# Only intra-repo PRs are allowed to have PR artifacts uploaded | |
# We only want to trigger once the upload once in the case the upload label is added, not when any label is added | |
if: | | |
github.event.pull_request.head.repo.full_name == 'DeterminateSystems/flakehub-push' | |
&& ( | |
(github.event.action == 'labeled' && github.event.label.name == 'upload to s3') | |
|| (github.event.action != 'labeled' && contains(github.event.pull_request.labels.*.name, 'upload to s3')) | |
) | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # In order to request a JWT for AWS auth | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
role-to-assume: ${{ secrets.AWS_S3_UPLOAD_ROLE }} | |
aws-region: us-east-2 | |
- name: Create the artifacts directory | |
run: rm -rf ./artifacts && mkdir ./artifacts | |
- uses: actions/download-artifact@v3 | |
with: | |
name: flakehub-push-X64-Linux | |
path: flakehub-push-X64-Linux | |
- name: Persist the flakehub-push binary | |
run: cp ./flakehub-push-X64-Linux/flakehub-push ./artifacts/flakehub-push-X64-Linux | |
- name: Publish Release (PR) | |
env: | |
AWS_BUCKET: ${{ secrets.AWS_S3_UPLOAD_BUCKET }} | |
run: | | |
.github/workflows/upload_s3.sh pr "${{ github.event.pull_request.number }}" "${{ github.event.pull_request.head.sha }}" |