This repository has been archived by the owner on May 23, 2024. It is now read-only.
fix: update max HS refund and specify kilometers is for both to and f… #20
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: Deploy reise container to Azure | |
on: | |
push: | |
branches: reise-master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: azure/docker-login@v1 | |
with: | |
login-server: ntnuiservices.azurecr.io | |
username: ${{ secrets.REGISTRY_USERNAME }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
- run: | | |
docker build . -t ntnuiservices.azurecr.io/skjema-reise:latest | |
docker push ntnuiservices.azurecr.io/skjema-reise:latest | |
- uses: azure/webapps-deploy@v2 | |
with: | |
app-name: 'ntnui-skjema-reise' | |
publish-profile: ${{ secrets.REISE_AZURE_WEBAPP_PUBLISH_PROFILE }} | |
images: 'ntnuiservices.azurecr.io/skjema-reise:latest' |