Skip to content

Commit

Permalink
temp: Disable non-binary steps
Browse files Browse the repository at this point in the history
  • Loading branch information
drklee3 committed Feb 16, 2025
1 parent bf69687 commit b80fbfa
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: Continuous Integration (Release)
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+*"
#tags:
# - "v[0-9]+.[0-9]+.[0-9]+*"

jobs:
# run default ci checks against released version
default-checks:
uses: ./.github/workflows/ci-default.yml
#default-checks:
# uses: ./.github/workflows/ci-default.yml

# get the version tag that triggered this workflow
get-version-tag:
# prep version release only if all checks pass
needs: default-checks
#needs: default-checks
runs-on: ubuntu-latest
outputs:
git-tag: ${{ steps.git-tag.outputs.tag }}
Expand All @@ -23,14 +23,14 @@ jobs:

# build and upload versions of kava for use on internal infrastructure
# configurations for databases, cpu architectures and operating systems
docker:
# only run if all checks pass
needs: get-version-tag
uses: ./.github/workflows/ci-docker.yml
with:
dockerhub-username: kavaops
extra-image-tag: ${{ needs.get-version-tag.outputs.git-tag }}
secrets: inherit
# docker:
# # only run if all checks pass
# needs: get-version-tag
# uses: ./.github/workflows/ci-docker.yml
# with:
# dockerhub-username: kavaops
# extra-image-tag: ${{ needs.get-version-tag.outputs.git-tag }}
# secrets: inherit

build-binary:
name: Build binary (${{ matrix.arch }} - ${{ matrix.db }})
Expand Down

0 comments on commit b80fbfa

Please sign in to comment.