Skip to content

Commit

Permalink
ci: add spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
gao-sun committed Jun 29, 2024
1 parent 9dfcecb commit e7cc05b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/alteration-compatibility-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
id: changes-detection
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
BASE=$(git merge-base origin/${{github.base_ref}} HEAD)
BASE=$(git merge-base origin/${{ github.base_ref }} HEAD)
else
BASE=${{ github.event.before }}
fi
Expand All @@ -47,15 +47,15 @@ jobs:
package:
needs: check-alteration-changes
runs-on: ubuntu-latest
if: ${{needs.check-alteration-changes.outputs.has-alteration-changes == 'true'}}
if: ${{ needs.check-alteration-changes.outputs.has-alteration-changes == 'true' }}
env:
INTEGRATION_TEST: true
DEV_FEATURES_ENABLED: false
steps:
- uses: logto-io/actions-package-logto-artifact@v2
with:
artifact-name: alteration-integration-test-${{ github.sha }}
branch: ${{github.base_ref}}
branch: ${{ github.base_ref }}
pnpm-version: 9

run-logto:
Expand All @@ -73,8 +73,8 @@ jobs:
steps:
- uses: logto-io/actions-run-logto-integration-tests@v3
with:
branch: ${{github.base_ref}}
branch: ${{ github.base_ref }}
logto-artifact: alteration-integration-test-${{ github.sha }}
test-target: ${{ matrix.target }}
db-alteration-target: ${{github.head_ref}}
db-alteration-target: ${{ github.head_ref }}
pnpm-version: 9

0 comments on commit e7cc05b

Please sign in to comment.