Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoieni committed Apr 15, 2024
1 parent 380cfda commit e0f6e43
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,18 @@ jobs:
git commit -m "first commit"
git remote add origin https://github.com/Test/release-plz-test.git
- name: Run release-plz
id: release-plz
uses: ./ # Uses an action in the root directory
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
project_manifest: .github/workflows/marco-test-one/Cargo.toml
- name: Assert release
env:
RELEASES: ${{ steps.release-plz.outputs.releases }}
run: |
echo "releases: $RELEASES"
if [ echo "$RELEASES" | jq 'length' != "1" ]; then
echo "too many releases"
exit 1
fi

0 comments on commit e0f6e43

Please sign in to comment.