Test fixes #357
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: New Docker image | |
on: | |
pull_request: | |
branches: [ main, v0.1 ] | |
paths: | |
- ts/Dockerfile.tmpl | |
- release_image/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.22' | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: docker login | |
env: | |
DOCKER_TOKEN: ${{secrets.DOCKER_TOKEN}} | |
run: echo $DOCKER_TOKEN | docker login ghcr.io -u USERNAME --password-stdin | |
- name: build the image | |
env: | |
# hack to avoid hitting the db | |
DB_CONNECTION_STRING: sqlite:/// | |
run: cd release_image && go run . | |