Skip to content

Commit

Permalink
Update build.yml fix The set-output command is deprecated and will …
Browse files Browse the repository at this point in the history
…be disabled soon (#632)
  • Loading branch information
vharseko authored Aug 30, 2023
1 parent 2c18837 commit 46cd2ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
restore-keys: ${{ runner.os }}-m2-repository
- name: Set Integration Test Environment
if: matrix.os == 'ubuntu-latest'
run: >
echo '::set-output name=MAVEN_PROFILE_FLAG::-P integration-test'
&& echo '::set-output name=MAVEN_VERIFY_STAGE::verify'
&& echo "127.0.0.1 openam.local" | sudo tee -a /etc/hosts
run: |
echo "MAVEN_PROFILE_FLAG=-P integration-test" >> $GITHUB_OUTPUT
echo "MAVEN_VERIFY_STAGE=verify" >> $GITHUB_OUTPUT
echo "127.0.0.1 openam.local" | sudo tee -a /etc/hosts
id: maven-profile-flag
- name: Build with Maven
env:
Expand Down

0 comments on commit 46cd2ec

Please sign in to comment.