Skip to content

Fix header bar in events page #126

Fix header bar in events page

Fix header bar in events page #126

# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions
name: Build and deploy kvarteret.no
on:
push:
branches:
- main
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push container image to registry
uses: docker/build-push-action@v3
with:
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/kvarteretno:latest
file: ./Dockerfile.kvarteret
build-args: |
CMS_TOKEN=${{ secrets.CMS_TOKEN }}
STUDENTBERGEN_TOKEN=${{ secrets.STUDENTBERGEN_TOKEN }}
CRESCAT_TOKEN=${{ secrets.CRESCAT_TOKEN }}
INVALIDATE_SECRET=${{ secrets.INVALIDATE_SECRET }}
deploy:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
environment:
name: "production"
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
steps:
- name: Deploy to Azure Web App
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: "kvarteret-preview"
slot-name: "production"
publish-profile: ${{ secrets.AzureAppService_PublishProfile_6603541d977f42308d6936ad67cee284 }}
images: "${{ secrets.DOCKER_HUB_USERNAME }}/kvarteretno:latest"