Files
battleship/.github/workflows/cd-backend.yml
2024-09-26 01:53:39 +05:30

51 lines
1.4 KiB
YAML

name: Deploy backend
on:
push:
tags:
- v**
workflow_dispatch:
jobs:
docker-azure:
runs-on: ubuntu-latest
environment: battleship
permissions:
id-token: write
contents: read
steps:
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ secrets.DOCKER_IMAGE_PATH }}:${{ github.sha }}
cache-from: type=registry,ref=${{ secrets.DOCKER_IMAGE_PATH }}:buildcache
cache-to: type=registry,ref=${{ secrets.DOCKER_IMAGE_PATH }}:buildcache,mode=max
-
name: Azure login
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
-
name: Deploy Container
uses: azure/container-apps-deploy-action@v1
with:
registryUrl: docker.io
containerAppName: battleship
resourceGroup: Battleship
imageToDeploy: docker.io/${{ secrets.DOCKER_IMAGE_PATH }}:${{ github.sha }}