Skip to content

Commit

Permalink
chore: missing checkout in prepare_env
Browse files Browse the repository at this point in the history
  • Loading branch information
loboda4450 authored Sep 4, 2024
1 parent be624a7 commit 6c12f31
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
if: ${{ github.event.inputs.branch != '' }}
run: echo "branch=refs/heads/${{ github.event.inputs.branch }}" >> $GITHUB_OUTPUT

- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ steps.input_branch.outputs.branch || github.ref }}

- name: Create tag list matching semver from executing tag
id: tag
if: ${{ github.ref_type == 'tag' }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-console.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
if: ${{ github.event.inputs.branch != '' }}
run: echo "branch=refs/heads/${{ github.event.inputs.branch }}" >> $GITHUB_OUTPUT

- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ steps.input_branch.outputs.branch || github.ref }}

- name: Create tag list matching semver from executing tag
id: tag
if: ${{ github.ref_type == 'tag' }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-conversion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
if: ${{ github.event.inputs.branch != '' }}
run: echo "branch=refs/heads/${{ github.event.inputs.branch }}" >> $GITHUB_OUTPUT

- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ steps.input_branch.outputs.branch || github.ref }}

- name: Create tag list matching semver from executing tag
id: tag
if: ${{ github.ref_type == 'tag' }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-idp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
if: ${{ github.event.inputs.branch != '' }}
run: echo "branch=refs/heads/${{ github.event.inputs.branch }}" >> $GITHUB_OUTPUT

- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ steps.input_branch.outputs.branch || github.ref }}

- name: Create tag list matching semver from executing tag
id: tag
if: ${{ github.ref_type == 'tag' }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-language.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
if: ${{ github.event.inputs.branch != '' }}
run: echo "branch=refs/heads/${{ github.event.inputs.branch }}" >> $GITHUB_OUTPUT

- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ steps.input_branch.outputs.branch || github.ref }}

- name: Create tag list matching semver from executing tag
id: tag
if: ${{ github.ref_type == 'tag' }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
if: ${{ github.event.inputs.branch != '' }}
run: echo "branch=refs/heads/${{ github.event.inputs.branch }}" >> $GITHUB_OUTPUT

- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ steps.input_branch.outputs.branch || github.ref }}

- name: Create tag list matching semver from executing tag
id: tag
if: ${{ github.ref_type == 'tag' }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-mosaic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
if: ${{ github.event.inputs.branch != '' }}
run: echo "branch=refs/heads/${{ github.event.inputs.branch }}" >> $GITHUB_OUTPUT

- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ steps.input_branch.outputs.branch || github.ref }}

- name: Create tag list matching semver from executing tag
id: tag
if: ${{ github.ref_type == 'tag' }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
if: ${{ github.event.inputs.branch != '' }}
run: echo "branch=refs/heads/${{ github.event.inputs.branch }}" >> $GITHUB_OUTPUT

- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ steps.input_branch.outputs.branch || github.ref }}

- name: Create tag list matching semver from executing tag
id: tag
if: ${{ github.ref_type == 'tag' }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-webdav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
if: ${{ github.event.inputs.branch != '' }}
run: echo "branch=refs/heads/${{ github.event.inputs.branch }}" >> $GITHUB_OUTPUT

- name: Checkout Repository
uses: actions/checkout@v4
with:
ref: ${{ steps.input_branch.outputs.branch || github.ref }}

- name: Create tag list matching semver from executing tag
id: tag
if: ${{ github.ref_type == 'tag' }}
Expand Down

0 comments on commit 6c12f31

Please sign in to comment.