forked from lix-project/lix-installer
12bf502bcb
* upload_s3: provide git ish as argument $GITHUB_SHA isn't the actual PR's HEAD's SHA, but a merge commit or something. * upload_s3: use an empty object if the file doesn't exist on s3 It's not pretty, but it works, and the md5sum of a file should never be "null". * release-branches: upload to `branch_${name}` instead
35 lines
1 KiB
YAML
35 lines
1 KiB
YAML
name: Release Branch
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
# NOTE: make sure any branches here are also valid directory names,
|
|
# otherwise creating the directory and uploading to s3 will fail
|
|
- 'main'
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
id-token: write # In order to request a JWT for AWS auth
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Download Buildkite Artifacts
|
|
uses: EnricoMi/download-buildkite-artifact-action@v1.14
|
|
with:
|
|
buildkite_token: ${{ secrets.BUILDKITE_TOKEN }}
|
|
output_path: artifacts
|
|
- name: Configure AWS Credentials
|
|
uses: aws-actions/configure-aws-credentials@v1
|
|
with:
|
|
role-to-assume: ${{ secrets.AWS_S3_UPLOAD_ROLE }}
|
|
aws-region: us-east-2
|
|
- name: Publish Release (Branch)
|
|
env:
|
|
AWS_BUCKET: ${{ secrets.AWS_S3_UPLOAD_BUCKET }}
|
|
run: |
|
|
BRANCH="branch_${{ github.ref_name }}"
|
|
GIT_ISH="$GITHUB_SHA"
|
|
./upload_s3.sh "$BRANCH" "$GIT_ISH"
|