Skip to content

Commit

Permalink
Fixed github actions work syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
tpanajott committed Mar 11, 2024
1 parent f342100 commit 091da3a
Show file tree
Hide file tree
Showing 3 changed files 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 @@ -282,15 +282,15 @@ jobs:
fi
- name: Checkout the repository
uses: actions/checkout@v4
if: ${{ steps.image_name.outputs.branch == "beta" }}
if: ${{ steps.image_name.outputs.branch == 'beta' }}
with:
ref: main
- name: Update beta version in main branch
if: ${{ steps.image_name.outputs.branch == "beta" }}
if: ${{ steps.image_name.outputs.branch == 'beta' }}
run: |
sed -i "s/^version: [0-9A-Za-z\.\-]\+/version: ${{ github.ref_name }}/g" docker-beta/config.yaml
- uses: stefanzweifel/git-auto-commit-action@v5
if: ${{ steps.image_name.outputs.branch == "beta" }}
if: ${{ steps.image_name.outputs.branch == 'beta' }}
with:
commit_message: Update beta version reference
branch: "main"
Binary file modified docker/web/nspanelmanager/manual.pdf
Binary file not shown.
Binary file modified docs/tex/manual.pdf
Binary file not shown.

0 comments on commit 091da3a

Please sign in to comment.