Skip to content

Merge pull request #264 from HydrologicEngineeringCenter/CWMS-2055_up… #274

Merge pull request #264 from HydrologicEngineeringCenter/CWMS-2055_up…

Merge pull request #264 from HydrologicEngineeringCenter/CWMS-2055_up… #274

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 }}