Skip to content

Commit

Permalink
chore: remove debug output
Browse files Browse the repository at this point in the history
Signed-off-by: Stephan Wendel <me@stephanwe.de>
  • Loading branch information
KwadFan committed Feb 19, 2024
1 parent 0c3d3c4 commit 1404177
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@ jobs:
id: current-version
shell: bash
run: |
source ./config/default
source ./config/config-defaults.conf
echo "version=${DIST_VERSION}" >> $GITHUB_OUTPUT
- name: Push version number
if: steps.current-version.outputs.version != github.event.inputs.version
shell: bash
run: |
sed -i "s|DIST_VERSION.*|DIST_VERSION=\"${{ github.event.inputs.version }}\"|" ./config/default
sed -i "s|DIST_VERSION.*|DIST_VERSION=\"${{ github.event.inputs.version }}\"|" ./config/config-defaults.conf
- name: git add & commit & push
if: steps.current-version.outputs.version != github.event.inputs.version
uses: EndBug/add-and-commit@v9
with:
add: "./config/default"
add: "./config/config-defaults.conf"
default_author: github_actions
message: "chore: push version number to v${{ github.event.inputs.version }}"
push: true
Expand Down

0 comments on commit 1404177

Please sign in to comment.