Bump express from 4.18.2 to 4.19.2 in /src/main/frontend (#20) #9
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 Artifacts | |
on: | |
push: | |
branches: | |
- main | |
- development | |
workflow_dispatch: | |
# manual dispatch allowed | |
jobs: | |
deploy: | |
name: Deploy Artifacts | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Git Version | |
id: version | |
uses: codacy/git-version@2.7.1 | |
with: | |
release-branch: main | |
dev-branch: development | |
minor-identifier: "feature:" | |
major-identifier: "breaking:" | |
- name: Create Git Tag | |
if: contains(steps.version.outputs.version, 'SNAPSHOT') == false | |
run: | | |
git tag ${{ steps.version.outputs.version }} | |
git push origin ${{ steps.version.outputs.version }} | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
if: contains(steps.version.outputs.version, 'SNAPSHOT') == false | |
with: | |
prerelease: false | |
artifactErrorsFailBuild: true | |
tag: ${{ steps.version.outputs.version }} | |
artifacts: target/pagepulse-${{ steps.version.outputs.version }}.jar |