Bump google.golang.org/grpc from 1.55.0 to 1.56.3 (#316) #172
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: Tornjak Artifact push | |
on: | |
push: | |
branches: | |
- main | |
- v1.4 | |
jobs: | |
tornjak-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Show trigger info | |
run: | | |
cat <<EOF >>"${GITHUB_STEP_SUMMARY}" | |
# Workflow job info | |
- 🎉 The job was automatically triggered by a ${{ github.event_name }} event. | |
- 🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub! | |
- 🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}. | |
EOF | |
- name: Check out repository code | |
uses: actions/[email protected] | |
- name: Install Golang | |
uses: actions/[email protected] | |
with: | |
go-version-file: go.mod | |
check-latest: true | |
cache: true | |
- name: Download modules | |
run: go mod download | |
- uses: actions/[email protected] | |
with: | |
node-version: '18' | |
- name: Download modules | |
run: go mod download | |
- name: golangci-lint | |
uses: golangci/[email protected] | |
with: | |
version: v1.53 | |
args: --timeout 7m | |
- name: Log in to GHCR.io | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
# set repo and GITHUB SHA | |
- name: Set github commit id | |
run: echo "GITHUB_SHA=$GITHUB_SHA" >> $GITHUB_ENV | |
- name: Set release repo | |
run: echo "REPO=ghcr.io/${{ github.repository_owner }}" >> $GITHUB_ENV | |
# build and push images tagged with GITHUB_SHA, version, and latest | |
- name: Build and push tornjak images | |
run: make release-images | |
# build and push UBI images | |
- name: Add ubi prefix | |
run: echo "IMAGE_TAG_PREFIX=ubi-" >> $GITHUB_ENV | |
- name: Set frontend Dockerfile | |
run: echo "DOCKERFILE_FRONTEND=Dockerfile.frontend-container.ubi" >> $GITHUB_ENV | |
- name: Set backend Dockerfile | |
run: echo "DOCKERFILE_BACKEND=Dockerfile.backend-container.ubi" >> $GITHUB_ENV | |
- name: Build and push UBI images | |
run: make release-images | |
- name: Print job result | |
run: | | |
cat <<EOF >>"${GITHUB_STEP_SUMMARY}" | |
- 🍏 This job's status is ${{ job.status }}. | |
EOF |