Skip to content

fix(ci/cd): Update the way to retrieve last tag in github workflow /2 #459

fix(ci/cd): Update the way to retrieve last tag in github workflow /2

fix(ci/cd): Update the way to retrieve last tag in github workflow /2 #459

Workflow file for this run

name: Staging deployment
on:
push:
branches:
- staging
env:
DEPLOYMENT: paysage-api # Must match k8s deployment name
DEPLOYMENT_NAMESPACE: paysage # Must match k8s deployment namespace
DEPLOYMENT_URL: https://docs.paysage.dataesr.ovh/docs/paysage-api-1
MM_NOTIFICATION_CHANNEL: bots
jobs:
publish-ghcr:
name: Publish Docker image
runs-on: ubuntu-latest
steps:
- name: 🏁 Checkout
uses: actions/checkout@v4
- name: 🔑 Login ghcr.io
run: docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
- name: 🏷️ Get tag
id: tag
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: 🐋 Build Docker image
run: |
IMAGE_ID=ghcr.io/${{ github.repository }}
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
docker build -t $IMAGE_ID:${{ steps.tag.outputs.tag }} .
- name: Push image
run: |
IMAGE_ID=ghcr.io/${{ github.repository }}
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
docker push --all-tags $IMAGE_ID
deploy-docs :
name: Deploy documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build docs
run: |
npm i swagger-cli
npm run docs:build
- name: Push to stoplight
run: |
cd docs
npx @stoplight/cli@5 push --ci-token ${{ secrets.STOPLIGHT_TOKEN }} --url https://dataesr.stoplight.io/
deploy:
name: Update staging deployment
runs-on: ubuntu-latest
needs: publish-ghcr
steps:
- name: Deploy to Cluster
id: kubectl-deploy
uses: dataesr/[email protected]
env:
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG_DOAD_STAGING }}
with:
namespace: ${{ env.DEPLOYMENT_NAMESPACE }}
restart: ${{ env.DEPLOYMENT }}
notify:
needs: deploy
if: always()
runs-on: ubuntu-latest
steps:
- uses: dataesr/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN}}
mattermost_webhook_url: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
mattermost_channel: ${{ env.MM_NOTIFICATION_CHANNEL}}
deployment_url: ${{ env.DEPLOYMENT_URL }}