feat: add gha for codebuild fedora arm #17
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: magpibuild-arm64 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: {} | |
permissions: | |
id-token: write | |
packages: write | |
concurrency: | |
group: ${{ github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
codebuild: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@010d0da01d0b5a38af31e9c3470dbfdabdecca3a # v4.0.1 | |
with: | |
aws-region: ap-southeast-2 | |
role-to-assume: arn:aws:iam::615890063537:role/tf-dev-github-actions-geonet-codebuild-magpi | |
role-duration-seconds: 3600 | |
role-session-name: "github-actions-base-images-arm64-magpi" | |
- name: Run CodeBuild | |
uses: aws-actions/aws-codebuild-run-build@v1 | |
env: | |
GHCR_USER: ${{ github.actor }} | |
GHCR_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
project-name: tf-dev-magpi-codebuild | |
disable-source-override: false | |
source-version-override: ${{ github.ref }} | |
env-vars-for-codebuild: | | |
GHCR_USER, | |
GHCR_TOKEN | |
buildspec-override: | | |
version: 0.2 | |
env: | |
shell: bash | |
git-credential-helper: yes | |
phases: | |
build: | |
on-failure: ABORT | |
commands: | |
- docker build -t rpmbuild-fedora images/rpmbuild-fedora | |
- docker tag rpmbuild-fedora:latest ghcr.io/geonet/base-images/rpmbuild-fedora:latest | |
post_build: | |
on-failure: ABORT | |
commands: | |
- | | |
if expr "${CODEBUILD_SOURCE_VERSION}" : "refs/heads/main" >/dev/null; then | |
docker login -u ${GHCR_USER} -p ${GHCR_TOKEN} ghcr.io | |
docker push ghcr.io/geonet/base-images/rpmbuild-fedora:latest | |
fi |