Migrate Jenkins build job "cyberduck-release-windows" to GitHub Actions#15555
Closed
RaveenaRamany wants to merge 86 commits intoiterate-ch:masterfrom
Closed
Migrate Jenkins build job "cyberduck-release-windows" to GitHub Actions#15555RaveenaRamany wants to merge 86 commits intoiterate-ch:masterfrom
RaveenaRamany wants to merge 86 commits intoiterate-ch:masterfrom
Conversation
…-release-windows set distributionManagement repos to local
…ndows-to-actions-20231210-172433 Convert cyberduck-release-windows to GitHub Actions
…-release-windows Add option for git tag
…-release-windows Fix WORKSPACE variable
…ndows-chocolatey-to-actions-20231211-122942 Convert cyberduck-release-windows-chocolatey to GitHub Actions
Added Secret API Key
…-release-windows Features/migration cyberduck release windows
…h environment variable
|
|
dkocher
reviewed
Jan 13, 2025
Comment on lines
+21
to
+32
| - name: clean workspace | ||
| shell: ruby {0} | ||
| run: |- | ||
| require "fileutils" | ||
| Dir.chdir(ENV["GITHUB_WORKSPACE"]) do | ||
| paths = Dir.glob(["**/*"]) | ||
| paths -= Dir.glob([".git/**", ".repository/**"]) | ||
| paths.each do |path| | ||
| File.delete(path) if File.file?(path) | ||
| FileUtils.rm_rf(path) if File.directory?(path) | ||
| end | ||
| end |
Contributor
There was a problem hiding this comment.
Cleanup of workspace is not required in GitHub Actions context.
dkocher
reviewed
Jan 13, 2025
| uses: actions/checkout@v4.1.0 | ||
| with: | ||
| fetch-depth: '0' | ||
| ref: ${{ inputs.GIT_TAG }} |
Contributor
There was a problem hiding this comment.
Don't think this input is required when the user selects a tag for the run from Run workflow.
dkocher
reviewed
Jan 13, 2025
Comment on lines
+131
to
+158
| !**/*~ | ||
| !**/#*# | ||
| !**/.#* | ||
| !**/%*% | ||
| !**/._* | ||
| !**/CVS | ||
| !**/CVS/** | ||
| !**/.cvsignore | ||
| !**/SCCS | ||
| !**/SCCS/** | ||
| !**/vssver.scc | ||
| !**/.svn | ||
| !**/.svn/** | ||
| !**/.DS_Store | ||
| !**/.git | ||
| !**/.git/** | ||
| !**/.gitattributes | ||
| !**/.gitignore | ||
| !**/.gitmodules | ||
| !**/.hg | ||
| !**/.hg/** | ||
| !**/.hgignore | ||
| !**/.hgsub | ||
| !**/.hgsubstate | ||
| !**/.hgtags | ||
| !**/.bzr | ||
| !**/.bzr/** | ||
| !**/.bzrignore |
Contributor
|
Superseded by #17126. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
FHNW: CI/CD conceptualisation for Cyberduck
Migrate Jenkins build job "cyberduck-release-windows" to GitHub Actions