build(deps): bump commons-io:commons-io from 2.10.0 to 2.14.0 (#152) #29
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: Publish latest build | |
on: | |
push: | |
branches: [master] | |
jobs: | |
deploy: | |
if: ${{ github.repository == 'STAMP-project/test-runner' }} | |
name: 'Publish package' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Wait for tests to pass | |
uses: lewagon/[email protected] | |
with: | |
ref: ${{ github.ref }} | |
# Must be same as this job's name | |
# Reference: https://github.com/lewagon/wait-on-check-action#running-workflow-name | |
running-workflow-name: 'Publish package' | |
repo-token: ${{ secrets.TOKEN_GITHUB }} | |
- uses: actions/[email protected] | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
- name: Import GPG key | |
id: import_gpg | |
uses: crazy-max/ghaction-import-gpg@v4 | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
passphrase: ${{ secrets.GPG_PASSPHRASE }} | |
- name: Start deployment | |
env: | |
OSS_TESTRUNNER_USERNAME: ${{ secrets.OSS_TESTRUNNER_USERNAME }} | |
OSS_TESTRUNNER_PASSWORD: ${{ secrets.OSS_TESTRUNNER_PASSWORD }} | |
run: ./.buildscript/deploy_to_maven.sh |