We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2554539 + 53ae741 commit 8624d15Copy full SHA for 8624d15
2 files changed
README.md
@@ -112,7 +112,7 @@ jobs:
112
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
113
with:
114
upload_url: ${{ github.event.release.upload_url }}
115
- asset_path: ${{ steps.deploy.outputs.zip_path }}
+ asset_path: ${{github.workspace}}/${{ github.event.repository.name }}.zip
116
asset_name: ${{ github.event.repository.name }}.zip
117
asset_content_type: application/zip
118
```
entrypoint.sh
@@ -130,8 +130,6 @@ if ! $GENERATE_ZIP; then
130
echo "Generating zip file..."
131
cd "$SVN_DIR/trunk" || exit
132
zip -r "${GITHUB_WORKSPACE}/${SLUG}.zip" .
133
- # Set GitHub "zip_path" output
134
- echo "::set-output name=zip_path::$GITHUB_WORKSPACE/${SLUG}.zip"
135
echo "✓ Zip file generated!"
136
fi
137
0 commit comments