-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add create archive step to CD workflow #280
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥
- name: Create GitHub Tag & Release | ||
# Creates GH tag and release, adds zip archive as artifact to release. | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
tag: ${{ needs.determine-if-deploy.outputs.version }} | ||
commit: ${{ github.sha }} | ||
name: Release ${{ needs.determine-if-deploy.outputs.version }} | ||
body: ${{ env.content }} | ||
prerelease: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason we create the release as a pre-release?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Synced with Claire offline on this. This needs to be a prerelease so it doesn't prematurely get picked up by packagist until it passes review by Adobe/M2.
Description
Adds a step to the CD workflow to create a zip archive while excluding files that don't need to be released through a
.distignore
file.Manual Testing Steps
klaviyo_reclaim-4.1.0.zip
Pre-Submission Checklist:
NOTE: Please use the Changelogger cli tool to manage versioned file upgrades.