Skip to content

Update README.md

Update README.md #4

Workflow file for this run

name: Push Package
on:
push:
branches:
- main
tags:
- v*
env:
IMAGE_NAME: app
jobs:
push:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v2
- name: Build Docker Compose stack
run: docker-compose up -d --build
- name: Check for running containers
run: docker ps -a
- name: Log in to registry
# This is where you will update the PAT to GITHUB_TOKEN
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push image
run: docker-compose push