small fixes #308
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: Build and deploy staging | |
on: | |
push: | |
branches: | |
- staging | |
env: | |
DEPLOYMENT: ticket-office | |
DEPLOYMENT_NAMESPACE: ticket-office | |
DEPLOYMENT_URL: https://ticket-office.staging.dataesr.ovh | |
MM_NOTIFICATION_CHANNEL: bots | |
jobs: | |
publish-ghcr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v2 | |
- name: 🔑 Login Docker | |
run: docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} | |
- name: Build client (Vite.js) | |
run: | | |
bun i | |
bunx --bun vite build client --mode staging --emptyOutDir --outDir '../server/public' | |
docker build -t ${{ github.repository }} . | |
- name: Get Tag | |
id: version | |
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
- name: 📦 Push Docker image | |
run: | | |
IMAGE_ID=ghcr.io/${{ github.repository }} | |
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') | |
docker tag ${{ github.repository }} $IMAGE_ID:staging | |
docker push $IMAGE_ID:staging | |
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: | |
name: 📢 Notify in mattermost channel | |
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 }} |