Skip to content

Fixed JWTHelper

Fixed JWTHelper #14

Workflow file for this run

name: Build and deploy application
on:
push:
branches:
- main
jobs:
build:
uses: ./.github/workflows/build.yml
deploy:
needs: [ build ]
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: dhbw2go-backend
- name: Login to Azure
uses: azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Deploy to Azure Web App
id: deploy-to-webapp
uses: azure/webapps-deploy@v3
with:
app-name: ${{ vars.AZURE_APP_NAME }}
slot-name: 'production'
package: '*.jar'