-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #303 from kjsanger/chore/tidy-build
Remove a redundant variable and add comments
- Loading branch information
Showing
2 changed files
with
6 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,15 +28,17 @@ jobs: | |
git fetch --tags --force | ||
- name: "Build Package" | ||
- name: "Build source package" | ||
uses: wtsi-npg/[email protected] | ||
with: | ||
build-image: | ||
# The image choice is somewhat flexible because this is creating a source package. | ||
# The choice below favours being close to the current production environment. | ||
ghcr.io/wtsi-npg/ub-18.04-irods-clients-dev-4.2.11:latest | ||
build-script: | ||
./.github/workflows/build-release.sh | ||
|
||
- name: "Upload artifacts" | ||
- name: "Upload source package" | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: baton-release-tarball | ||
|
@@ -70,12 +72,12 @@ jobs: | |
echo 'RELEASE_VERSION='$(git describe --always --tags) >> $GITHUB_ENV | ||
echo 'MASTER_SHA='$(git rev-parse origin/master) >> $GITHUB_ENV | ||
- name: "Download artifact" | ||
- name: "Download source package" | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: baton-release-tarball | ||
|
||
- name: "Create Release" | ||
- name: "Create GitHub release" | ||
uses: ncipollo/[email protected] | ||
with: | ||
name: ${{ env.RELEASE_VERSION }} | ||
|
This file contains 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