Skip to content

PLAT-546 - default branch is called master #1

PLAT-546 - default branch is called master

PLAT-546 - default branch is called master #1

name: build-push-image
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Cache Go modules
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build the Go application
run: |
cd cmd/moroz
go build -o app .
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the Docker image
run: docker build -t ghcr.io/${{ github.repository_owner }}/${{ github.repository }}:latest .
- name: Push the Docker image
run: docker push ghcr.io/${{ github.repository_owner }}/${{ github.repository }}:latest