Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into develop
Browse files Browse the repository at this point in the history
# Conflicts:
#	bumpver.toml
#	pyproject.toml
  • Loading branch information
Frank Greguska authored and Frank Greguska committed Jun 14, 2024
2 parents 7e790b5 + 6610bdf commit e4fa2ae
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 25 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ name: Build 'n Deploy
on:
push:
branches:
- '*'
- main
- develop
- 'release/**'
- 'feature/**'
- 'issue/**'
- 'issues/**'
- 'dependabot/**'
tags-ignore:
- '*'
paths-ignore:
Expand Down Expand Up @@ -42,11 +48,14 @@ jobs:
- name: Initial checkout ${{ github.ref }}
if: github.event.inputs.commit == ''
uses: actions/checkout@v4
with:
token: ${{ steps.podaac-cicd.outputs.token }}
- name: Adjust to proper commit hash ${{ github.event.inputs.commit }}
if: github.event.inputs.commit != ''
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.commit }}
token: ${{ steps.podaac-cicd.outputs.token }}
- uses: actions/setup-python@v4
with:
python-version: '3.9'
Expand Down Expand Up @@ -89,11 +98,13 @@ jobs:
- name: Bump rc version
if: startsWith(github.ref, 'refs/heads/release/') && github.event_name != 'workflow_dispatch' && github.event_name != 'pull_request'
run: |
bumpver update -f --tag rc --tag-num
bumpver update -f -n --tag rc --tag-num
echo "TARGET_ENV=UAT" >> $GITHUB_ENV
- name: Release version
if: github.ref == 'refs/heads/main' && github.event_name != 'workflow_dispatch' && github.event_name != 'pull_request'
run: bumpver update -f --tag final
run: |
bumpver update -f -n --tag final
echo "TARGET_ENV=OPS" >> $GITHUB_ENV
# -- Build --
- name: Show bumpver contents
run: cat bumpver.toml
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# swodlr-raster-create
# swodlr-raster-create

41 changes: 21 additions & 20 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion terraform/lambdas.tf
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ resource "aws_ssm_parameter" "xdf_orbit_1_0_concept_id" {
}

resource "aws_ssm_parameter" "xdf_orbit_2_0_concept_id" {
name = "${local.service_path}/xdf_orbit_concept_id"
name = "${local.service_path}/xdf_orbit_2.0_concept_id"
type = "String"
overwrite = true
value = var.xdf_orbit_2_0_concept_id
Expand Down

0 comments on commit e4fa2ae

Please sign in to comment.