Skip to content

Commit

Permalink
Undo debugging changes
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-chambers committed Mar 15, 2024
1 parent 01d62f8 commit 181da4f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
connector-definition:
# For now, only run on tagged releases because main builds generate a Docker image tag name that
# is not easily accessible here
# if: ${{ startsWith(github.ref, 'refs/tags/v') }}
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
env:
CARGO_BUILD_TARGET: ${{ matrix.target }}
CARGO_NET_GIT_FETCH_WITH_CLI: "true"
# RUSTFLAGS: "-D warnings" # fail on warnings
RUSTFLAGS: "-D warnings" # fail on warnings
defaults:
run:
shell: bash
Expand Down Expand Up @@ -179,11 +179,11 @@ jobs:
release:
name: release to GitHub
needs:
# - docker
- docker
- connector-definition
- build-cli-binaries
runs-on: ubuntu-latest
# if: ${{ startsWith(github.ref, 'refs/tags/v') }}
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
- name: Get version from tag
id: get-version
run: |
echo "tagged_version=0.1.0" >> $GITHUB_OUTPUT
echo "tagged_version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
shell: bash

- uses: mindsers/changelog-reader-action@v2
Expand Down

0 comments on commit 181da4f

Please sign in to comment.