nightly build at 1pm #45
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: nightly build at 1pm | |
on: | |
push: | |
schedule: | |
- cron: '0 13 * * *' | |
jobs: | |
nightly_build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.2 | |
- name: Run unit test | |
run: mvn test | |
- name: Build with Maven | |
run: mvn -DskipTests -B package --no-transfer-progress --file ./pom.xml | |
- name: Upload WAR artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: digibank.war | |
path: ./target/*digitalbank*.war |