Skip to content

Merge pull request #19 from emeraldpay/fix/extra-slash-on-bucket-start #73

Merge pull request #19 from emeraldpay/fix/extra-slash-on-bucket-start

Merge pull request #19 from emeraldpay/fix/extra-slash-on-bucket-start #73

Workflow file for this run

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: Setup GCP
uses: google-github-actions/setup-gcloud@v0
with:
project_id: ${{ secrets.GCP_PROJECT_ID }}
service_account_key: ${{ secrets.GCP_ARTIFACTS_KEY }}
export_default_credentials: true
# 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: Set Version
run: ./gradlew properties -q | grep "^version:" | awk '{printf "PROJECT_VERSION=" $2}' >> $GITHUB_ENV
- 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-archive/${{ steps.gitversion.outputs.commitDate }}/${{ steps.time.outputs.time }}-${{ steps.gitversion.outputs.shortSha }}/
- name: Links to published artifacts
run: |
echo "Publishing artifacts to:"
echo " https://artifacts.emerald.cash/builds/dshackle-archive/${{ steps.gitversion.outputs.commitDate }}/${{ steps.time.outputs.time }}-${{ steps.gitversion.outputs.shortSha }}/dshackle-archive-${{ env.PROJECT_VERSION }}.zip"