fix GH token #3
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: CI 1.0.x-latest | |
on: | |
push: | |
branches: | |
# - '1.0.x' | |
- 'ci-refactor' | |
# paths: | |
# - 'src/**' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
build_publish: | |
name: Build and Publish image | |
environment: dev | |
permissions: | |
id-token: write | |
contents: read | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
scala: [2.13.10] | |
java: [temurin@11] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout current branch (full) | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Java (temurin@11) | |
if: matrix.java == 'temurin@11' | |
uses: actions/setup-java@v2 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Install node 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Installing openapi-generator-cli | |
run: npm install -g @openapitools/openapi-generator-cli | |
- name: Build and test project | |
run: sbt ++${{ matrix.scala }} test | |
- name: Get 1.0.x-SNAPSHOTS versionIds | |
id: version | |
uses: castlabs/[email protected] | |
with: | |
version: 1.0.x-SNAPSHOT | |
- name: Delete 1.0.x-SNAPSHOTS versions | |
if: ${{ steps.version.outputs.ids != '' }} | |
uses: actions/delete-package-versions@v2 | |
with: | |
package-version-ids: ${{ steps.version.outputs.ids }} | |
- name: Publish project | |
run: sbt ++${{ matrix.scala }} publish | |
- name: Generate Docker target | |
run: sbt ++${{ matrix.scala }} docker:stage | |
- name: Normalize repo name | |
run: | | |
# github.reposiory is in the format "owner/repository-name", we need only the repo name | |
NORM_REPO="$(echo "${{ github.repository }}" | cut -d"/" -f2)" | |
echo "NORM_REPO=$NORM_REPO" >> "$GITHUB_ENV" | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-region: ${{ vars.AWS_REGION }} | |
role-to-assume: ${{ secrets.IAM_ROLE_ARN }} | |
role-session-name: ${{ env.NORM_REPO }}-${{ github.run_number }} | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
with: | |
mask-password: 'true' | |
- name: Docker build and push on ECR | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./target/docker/stage | |
file: ./target/docker/stage/Dockerfile | |
push: true | |
tags: | | |
${{ steps.login-ecr.outputs.registry }}/${{ env.NORM_REPO }}:${{ github.ref_name }}-latest | |
${{ steps.login-ecr.outputs.registry }}/${{ env.NORM_REPO }}:commit-${{ github.sha }} |