Add Publish Workflows #5
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: publish | |
on: | |
push: | |
branches: ['main'] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
ECR_REPOSITORY_URL: 673156464838.dkr.ecr.us-west-2.amazonaws.com | |
ECR_REPOSITORY_NAME: on-chain-voting | |
jobs: | |
publish-server-image: | |
name: Build and Push Docker Image | |
runs-on: minafoundation-default-runners | |
steps: | |
- name: π₯ Checkout | |
uses: actions/checkout@v3 | |
- name: π¦ Get node-stats-collector version from Cargo.toml. | |
id: ocv-server | |
uses: dante-signal31/[email protected] | |
with: | |
cargo_toml_folder: ./server/ | |
- name: π·οΈ Generate Tag | |
run: echo "TAG=server-${{ steps.ocv-server.outputs.app_version }}-$(echo $GITHUB_SHA | cut -c1-7)" >> $GITHUB_ENV | |
- name: π ECR Login | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: π Check if Tag already exists | |
id: checktag | |
uses: tyriis/docker-image-tag-exists@main | |
with: | |
registry: ${{ env.ECR_REPOSITORY_URL}} | |
repository: ${{ env.ECR_REPOSITORY_NAME }} | |
tag: ${{ env.TAG }} | |
- name: π οΈ Build node-stats-collector Docker Image | |
if: steps.checktag.outputs.tag == 'not found' | |
working-directory: ./server/ | |
run: DOCKER_BUILDKIT=1 docker build -t ${{ env.ECR_REPOSITORY_URL}}/${{ env.ECR_REPOSITORY_NAME }}:${{ env.TAG }} . | |
- name: π Push node-stats-collector Docker Image | |
if: steps.checktag.outputs.tag == 'not found' | |
run: docker push ${{ env.ECR_REPOSITORY_URL}}/${{ env.ECR_REPOSITORY_NAME }}:${{ env.TAG }} | |
- name: π Release Notes | |
run: | | |
echo "Generate Release Notes" | |
echo "TODO: Generate Release Notes (https://github.com/MinaProtocol/mf-devops-workflows/issues/23)" |