This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
Uncd Assertion binary release #71
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: Uncd Assertion binary release | |
on: | |
schedule: | |
- cron: '23 */8 * * *' | |
workflow_dispatch: | |
inputs: | |
branch: | |
default: 'master' | |
description: "Nearcore branch to build and publish" | |
type: string | |
required: true | |
jobs: | |
binary-release: | |
name: "Build and publish uncd binary" | |
runs-on: "ubuntu-20.04-16core" | |
#environment: deploy | |
permissions: | |
id-token: write # required to use OIDC authentication | |
steps: | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::754641474505:role/GitHubActionsRunner | |
aws-region: us-west-1 | |
- name: Checkout ${{ github.event.inputs.branch }} branch | |
if: ${{ github.event_name == 'workflow_dispatch'}} | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.inputs.branch }} | |
- name: Checkout framework repository | |
if: ${{ github.event_name != 'workflow_dispatch'}} | |
uses: actions/checkout@v4 | |
- name: Uncd binary build and upload to S3 | |
run: ./scripts/binary_release.sh assertions-release | |
- name: Update latest version metadata in S3 | |
run: | | |
echo $(git rev-parse HEAD) > latest | |
BRANCH=$(git branch --show-current) | |
aws s3 cp --acl public-read latest s3://build.utility.com/framework/$(uname)/${BRANCH}/latest-assertions |