Skip to content

v1.0.5

v1.0.5 #7

Workflow file for this run

name: Pressure Monitor CD
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout 🛎️
uses: actions/checkout@master
- name: Build Docker Compose 🏗️
run: docker-compose build
- name: Login to GitHub Container Registry 🔓
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push Docker Compose 🪖
run: docker-compose push