Skip to content

Commit

Permalink
change variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
42CrMo4 committed Jul 7, 2024
1 parent 88214fc commit 4607ee1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/generate_output.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,17 +153,17 @@ jobs:
- name: Update the Kibot File with the Tags
run: |
if [ -n "${{ env.last_tag }}" ]; then
if [ -n "${{ env.LAST_NON_PRE_RELEASE_TAG }}" ]; then
curl -o Diff_append.yaml https://raw.githubusercontent.com/42CrMo4/KiCad_Workflows/ki8Diff/.github/workflows/Diff_append.yaml
cat Diff_append.yaml >> *.kiplot.yaml
sed -i "s!<<TAG>>!${{ env.last_tag }}!" *.kiplot.yaml
sed -i "s!<<TAG>>!${{ env.LAST_NON_PRE_RELEASE_TAG }}!" *.kiplot.yaml
else
echo "No suitable tag found"
fi
if [ -n "${{ env.matching_rc_tag }}" ]; then
if [ -n "${{ env.MATCHING_RC_TAG }}" ]; then
curl -o Diff_append.yaml https://raw.githubusercontent.com/42CrMo4/KiCad_Workflows/ki8Diff/.github/workflows/Diff_append.yaml
cat Diff_append.yaml >> *.kiplot.yaml
sed -i "s!<<TAG>>!${{ env.matching_rc_tag }}!" *.kiplot.yaml
sed -i "s!<<TAG>>!${{ env.MATCHING_RC_TAG }}!" *.kiplot.yaml
else
echo "No suitable rc-tag found"
fi
Expand Down

0 comments on commit 4607ee1

Please sign in to comment.