Skip to content

Commit

Permalink
Merge pull request #244 from liquibase/old-variable-export
Browse files Browse the repository at this point in the history
use old method for exporting variables
  • Loading branch information
filipelautert authored Aug 13, 2024
2 parents 5bf74fb + 299ab6b commit e10f1fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pro-extension-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,13 +183,13 @@ jobs:
working-directory: ${{ inputs.artifactPath }}
id: get-artifact-id
shell: bash
run: echo "artifact_id=$(mvn help:evaluate -Dexpression=project.artifactId -q -DforceStdout)" >> $GITHUB_ENV
run: echo "::set-output name=artifact_id::$(mvn help:evaluate -Dexpression=project.artifactId -q -DforceStdout)"

- name: Get Artifact Version
working-directory: ${{ inputs.artifactPath }}
id: get-artifact-version
shell: bash
run: echo "artifact_version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_ENV
run: echo "::set-output name=artifact_version::$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)"

- name: Save Artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit e10f1fa

Please sign in to comment.