Design of the main page #236
Workflow file for this run
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: docker containers | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: docker-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
name: "Docker" | |
steps: | |
- uses: actions/checkout@v4 | |
- run: docker compose build | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
- run: | | |
echo $MONDEY_DOCKER_IMAGE_TAG | |
docker compose build | |
docker compose push | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
env: | |
MONDEY_DOCKER_IMAGE_TAG: ${{ github.sha }} | |
- run: | | |
echo $MONDEY_DOCKER_IMAGE_TAG | |
docker compose build | |
docker compose push | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
env: | |
MONDEY_DOCKER_IMAGE_TAG: "latest" |