Browse Source

Create docker-image.yml

pull/3382/head
Roger Raventós Calle 2 years ago
committed by GitHub
parent
commit
80d825c28b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 18
      .github/workflows/docker-image.yml

18
.github/workflows/docker-image.yml

@ -0,0 +1,18 @@
name: Docker Image CI
on:
push:
branches: [ "development" ]
pull_request:
branches: [ "development" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag roger-ghostfolio:$(date +%s)
Loading…
Cancel
Save