Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/get_version.sh

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/nightly-schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,18 @@ jobs:
migration_image: ${{needs.develop.outputs.migration_image}}
region: us-gov-west-1
iam_role: arn:aws-us-gov:iam::718787032875:role/github-actions-ecr-cwms-data-api

test:
permissions:
packages: write
contents: write
uses: ./.github/workflows/release.yml
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
registry: ${{ secrets.HEC_PUB_REGISTRY}}
registry_user: ${{ secrets.ALT_REG_USER }}
registry_password: ${{ secrets.ALT_REG_PASSWORD }}
with:
branch: "test"
nightly: true
# May setup test nightly deploy in future, currently no permissions
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ on:
description: Which Branch to make the build from
options:
- develop
- test
nightly:
type: boolean
required: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Tagged Release
on:
push:
tags:
- '[0-9][0-9][0-9][0-9].[0-9][0-9].[0-9][0-9]'
- '[0-9][0-9][0-9][0-9].[0-9][0-9].[0-9][0-9]-[a-zA-Z0-9]+'
# Allow an additional marker if multiple releases needed within a day.
- '[0-9][0-9][0-9][0-9].[0-9][0-9].[0-9][0-9]-dev[a-z]*'
jobs:
release:
uses: ./.github/workflows/release.yml
Expand Down
Loading