Skip to content

Change from psil to paivola-student-innovation-lab #3

Change from psil to paivola-student-innovation-lab

Change from psil to paivola-student-innovation-lab #3

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches:
- docker
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
run: |
docker build -t ghcr.io/paivola-student-innovation-lab/dailycrypt:latest .
docker push ghcr.io/paivola-student-innovation-lab/dailycrypt:latest