Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

Commit

Permalink
ci: fix PR workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
msavy authored Sep 3, 2022
1 parent bf013f7 commit 364f5cf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pull-request-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
read-version:
runs-on: ubuntu-latest
outputs:
snapshot-version: ${{ steps.check-version-change.outputs.snapshot-version }}
release-version: ${{ steps.check-version-change.outputs.snapshot-version }}
release-version: ${{ steps.read-versions.outputs.release_version }}
snapshot-version: ${{ steps.read-versions.outputs.snapshot_version }}
steps:
- name: Checkout Apiman Docker repo
uses: actions/checkout@v3
Expand All @@ -17,6 +17,7 @@ jobs:
run: bash .github/workflows/support/setup.sh

- name: "Get release and snapshot versions..."
id: read-versions
run: |
echo "{release_version=$(cat .github/workflows/RELEASE_VERSION)}" >> $GITHUB_ENV
echo "{snapshot_version=$(cat .github/workflows/SNAPSHOT_VERSION)}" >> $GITHUB_ENV
Expand Down

0 comments on commit 364f5cf

Please sign in to comment.