fix: apply header style correctly #111
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
caprover: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
echo ${{ secrets.GHCR_TOKEN }} | docker login ghcr.io -u gleich --password-stdin | |
docker build -t ghcr.io/gleich/terminal . | |
docker push ghcr.io/gleich/terminal | |
- uses: caprover/[email protected] | |
with: | |
server: https://dev.mattglei.ch | |
app: terminal | |
token: '${{ secrets.CAPROVER_APP_TOKEN }}' | |
image: ghcr.io/gleich/terminal |