Skip to content

Implemented exit gate #41

Implemented exit gate

Implemented exit gate #41

Workflow file for this run

# Copyright © 2022 Cask Data, Inc.

Check failure on line 1 in .github/workflows/tag-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tag-release.yml

Invalid workflow file

(Line: 64, Col: 14): Unrecognized named-value: 'SECURE_PUBLISH_BUCKET'. Located at position 1 within expression: SECURE_PUBLISH_BUCKET
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
name: Maven Central Release
on:
workflow_dispatch:
jobs:
release-job:
runs-on: k8s-runner-build
if: ${{ github.ref_type == 'tag' }}
steps:
- name: Get Secrets from GCP Secret Manager
id: 'secrets'
uses: 'google-github-actions/get-secretmanager-secrets@v0'
with:
secrets: |-
CDAP_GPG_PASSPHRASE:cdapio-github-builds/CDAP_GPG_PASSPHRASE
CDAP_GPG_PRIVATE_KEY:cdapio-github-builds/CDAP_GPG_PRIVATE_KEY
SECURE_PUBLISH_BUCKET:cdapio-github-builds/publish_bucket
- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
- name: Cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ github.workflow }}-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-${{ github.workflow }}
- name: Set up GPG conf
run: |
echo "pinentry-mode loopback" >> ~/.gnupg/gpg.conf
echo "allow-loopback-pinentry" >> ~/.gnupg/gpg-agent.conf
- name: Import GPG key
run: |
echo "$GPG_PRIVATE_KEY" > private.key
gpg --import --batch private.key
env:
GPG_PRIVATE_KEY: ${{ steps.secrets.outputs.CDAP_GPG_PRIVATE_KEY }}
- name: Run tests
run: mvn clean test -fae -T 2 -B -V -DcloudBuild -Dmaven.wagon.http.retryHandler.count=5 -Dmaven.wagon.httpconnectionManager.ttlSeconds=30
- name: Submit Build to GCB
id: gcb
working-directory: google-cloud
run: |
gcloud builds submit . \
--config=cloudbuild-release.yaml \
--project='cdapio-github-builds' \
--substitutions="_SECURE_PUBLISH_BUCKET_NAME=${{ SECURE_PUBLISH_BUCKET }}, GPG_PASSPHRASE=${{CDAP_GPG_PASSPHRASE}})