Skip to content

Commit

Permalink
fix: do not delete existing packages on release deploy (#145)
Browse files Browse the repository at this point in the history
Previously, when a release was made, existing packages in the repository were deleted by rsync.
This caused the Mage-OS 1.0.0 release to be removed when the 1.0.1 packages were deployed to the repository.

With this change, existing packages remain.
  • Loading branch information
Vinai authored Oct 11, 2023
1 parent 3c408a1 commit dd81275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-mageos-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
repo: ${{ inputs.repo }}
remote_dir: ${{ inputs.remote_dir }}
entrypoint: src/make/mageos-release.js
delete: true
delete: false
mageos_release: ${{ inputs.mageos_release }}
upstream_release: ${{ inputs.upstream_release }}
publish_tag: ${{ inputs.publish_tag }}
Expand Down

0 comments on commit dd81275

Please sign in to comment.