wip: build with tinygo

This commit is contained in:
Richard Anthony 2022-12-28 10:53:06 +11:00
parent 7ca98f6cd8
commit 73c7780a03
1 changed files with 19 additions and 0 deletions

19
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Docker Image CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file tinygo/Dockerfile --tag restic:tinygo-$(date +%s)
)