Update everything and migrate to new build #334
Workflow file for this run
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: Continuous Integration | |
on: [ push, pull_request ] | |
jobs: | |
exeuction: | |
name: Continuous Integration | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.x | |
- name: Set up Docker | |
uses: docker/setup-buildx-action@v3 | |
- name: Docker login | |
env: | |
REGISTRY_USER: ${{ github.actor }} | |
REGISTRY_PASSWORD: ${{ github.token }} | |
run: | | |
echo "$REGISTRY_PASSWORD" | docker login -u "$REGISTRY_USER" --password-stdin ghcr.io | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Install | |
run: | | |
go mod download | |
- name: Test | |
run: | | |
go run ./build --test | |
- name: Build | |
run: | | |
go run ./build --build | |
- name: Deploy | |
if: startsWith(github.ref, 'refs/tags/') | |
run: | | |
go run ./build --deploy |