Skip to content

Update docker-image.yml #12

Update docker-image.yml

Update docker-image.yml #12

Workflow file for this run

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 ./GDSwithREST/Dockerfile --tag gdswithrest:$(date +'%Y-%m-%d')
- name: Rename Docker image
run: docker tag gdswithrest:$(date +'%Y-%m-%d') ghcr.io/romanett/gdswithrest:$(date +'%Y-%m-%d')
- name: Login with Github Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to Github Container registry
run: docker push ghcr.io/romanett/gdswithrest:$(date +'%Y-%m-%d')