Skip to content

[DEPLOY] 2.2.49

[DEPLOY] 2.2.49 #4

# 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: DEV - increment version and deploy
on:
push:
branches:
- next
jobs:
version-increment:
runs-on: ubuntu-latest
if: "!startsWith(github.event.head_commit.message, '[DEPLOY]')"
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GIT_SECRET }}
- run: git config --global user.name 'Digitransit'
- run: git config --global user.email '[email protected]'
- name: major
run: npm version major -m "[DEPLOY] %s"
if: "contains(github.event.head_commit.message, '[MAJOR]')"
- name: minor
run: npm version minor -m "[DEPLOY] %s"
if: "contains(github.event.head_commit.message, '[MINOR]')"
- name: patch
run: npm version patch -m "[DEPLOY] %s"
if: "!contains(github.event.head_commit.message, '[MAJOR]') && !contains(github.event.head_commit.message, '[MINOR]')"
- run: git push
build-and-deploy:
runs-on: 'ubuntu-latest'
if: "startsWith(github.event.head_commit.message, '[DEPLOY]')"
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: azure/docker-login@v1
with:
login-server: https://index.docker.io/v1/
username: ${{ secrets.AzureAppService_ContainerUsername_43e4c8bef39f4f7d9da4f67dc0bafa48 }}
password: ${{ secrets.AzureAppService_ContainerPassword_60e925249e694d2896f1c2a466ddf37d }}
- run: |
docker build . -t index.docker.io/hsldevcom/digitransit-virtualmonitor:${{ github.sha }}
docker push index.docker.io/hsldevcom/digitransit-virtualmonitor:${{ github.sha }}
- name: Deploy to Azure Web App
uses: azure/webapps-deploy@v2
with:
app-name: 'lwa-virtualmonitor-dev-weu'
publish-profile: ${{ secrets.AZURE_DEV_2024_PUBLISHPROFILE }}
images: 'index.docker.io/hsldevcom/digitransit-virtualmonitor:${{ github.sha }}'