Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Build Docker Container
on:
push:
branches:
- master
permissions:
contents: read
packages: write
jobs:
build-api:
name: Build Docker Container
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker image
run: docker build -t ghcr.io/frumentumnl/responsetimer:latest .
- name: Push Docker image
run: docker push ghcr.io/frumentumnl/responsetimer