1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-07-03 06:53:53 +01:00
notes/.github/workflows/deploy.yml

22 lines
575 B
YAML
Raw Normal View History

2020-09-29 09:16:36 +01:00
name: Deploy
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build production container
run: docker build --tag docker.pkg.github.com/${GITHUB_REPOSITORY,,}/notes:latest .
- name: Log into GitHub Docker Registry
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login docker.pkg.github.com -u ${GITHUB_REPOSITORY%/*} --password-stdin
- name: Push the Docker container
run: docker push docker.pkg.github.com/${GITHUB_REPOSITORY,,}/notes:latest