Skip to content

Document Makefile and align .PHONY with available tasks (#275) #139

Document Makefile and align .PHONY with available tasks (#275)

Document Makefile and align .PHONY with available tasks (#275) #139

Workflow file for this run

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 backend image
run: make release-backend
- name: Build and push tornjak frontend image
run: make release-frontend
- name: Build and push tornjak image (frontend+backend)
run: make release-tornjak
- name: Build and push tornjak manager image
run: make release-manager
- name: Print job result
run: |
cat <<EOF >>"${GITHUB_STEP_SUMMARY}"
- 🍏 This job's status is ${{ job.status }}.
EOF