name: Create and publish Frontend container image on: push: branches: ["*"] release: types: [published] workflow_dispatch: env: REGISTRY: git.lattuga.net IMAGE_NAME: ${{github.repository}}/wg-manager-fe jobs: build-and-push-image: runs-on: ubuntu-22.04 permissions: contents: read packages: write steps: - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Checkout repository uses: actions/checkout@v3 - name: Log in to the Container registry uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.repository_owner }} password: ${{ secrets.PAT }} - name: Extract metadata (tags, labels) for Docker id: meta uses: https://github.com/docker/metadata-action@v4 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: | type=raw,value=latest,enable={{is_default_branch}} type=ref,event=branch type=ref,event=pr type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}} - name: Copy .env run: cp .env-dist .env - name: Link settings.py run: ln -s settings_dist.py wg_manager/settings.py - name: Build and push Docker image FE uses: docker/build-push-action@v6 with: context: . platforms: linux/amd64 #,linux/arm64 file: Containerfile push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}