Skip to content

CWMS-2055 - Updates to allow for a token provider with a discovered t… #271

CWMS-2055 - Updates to allow for a token provider with a discovered t…

CWMS-2055 - Updates to allow for a token provider with a discovered t… #271

Workflow file for this run

name: Deploy cwms-data-api-client
on:
push:
branches:
- main
tags:
- '*'
jobs:
build:
name: deploy
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: setup java
uses: actions/setup-java@v4
with:
java-version: '17'
java-package: jdk
distribution: 'temurin'
- name: Publish Artifacts
id: thedeploy
run: ./gradlew publish --info --init-script init.gradle
env:
DEPLOY_URL: ${{ secrets.DEPLOY_URL }}
DEPLOY_USER: ${{ secrets.DEPLOY_USER }}
DEPLOY_PASSWORD: ${{ secrets.DEPLOY_PASSWORD }}