problem: the error message about an invalid WS URL printed only durin… #394
Workflow file for this run
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: Artifacts | |
on: | |
push: | |
branches: | |
- master | |
- release/* | |
- ci/* | |
pull_request: | |
branches: | |
- master | |
- release/* | |
- ci/* | |
jobs: | |
publish-gcp: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v2 | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Auth GCP | |
uses: google-github-actions/auth@v0 | |
with: | |
credentials_json: ${{ secrets.GCP_ARTIFACTS_KEY }} | |
- name: Setup GCP | |
uses: google-github-actions/setup-gcloud@v0 | |
# needed for GitVersion | |
- name: Fetch all history | |
run: git fetch --prune --unshallow | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/[email protected] | |
with: | |
versionSpec: '5.x' | |
# step id used as reference for output values | |
- name: Use GitVersion | |
id: gitversion | |
uses: gittools/actions/gitversion/[email protected] | |
- name: Get Time | |
id: time | |
uses: nanzm/[email protected] | |
with: | |
timeZone: 0 | |
format: 'YYYYMMDD-HHmm' | |
- name: Build zip | |
uses: eskatos/gradle-command-action@v1 | |
with: | |
arguments: distZip | |
- name: Upload to GCP | |
run: | | |
gsutil cp -n ./build/distributions/*.zip gs://artifacts.emerald.cash/builds/dshackle/${{ steps.gitversion.outputs.commitDate }}/${{ steps.time.outputs.time }}-${{ steps.gitversion.outputs.shortSha }}/ |