-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #479 from HSLdevcom/new-infra-actions
new infra action
- Loading branch information
Showing
2 changed files
with
54 additions
and
51 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# 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 }}' |