restic/.github/workflows/build.yml
Workflow config file is invalid. Please check your config file: yaml: line 19: could not find expected ':'

20 lines
314 B
YAML

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)
)