-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
18 additions
and
66 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 |
---|---|---|
|
@@ -184,3 +184,21 @@ jobs: | |
cd /tmp/contents | ||
tar -xvf /tmp/image.tar | ||
sudo ls tmp/* | xargs -i bash -c "echo 'cat {}' && cat {}" | ||
- name: Push patch bump | ||
uses: nick-fields/retry@v2 | ||
with: | ||
timeout_minutes: 10 | ||
max_attempts: 50 | ||
shell: bash | ||
command: | | ||
set -x | ||
git config --global --add safe.directory "$GITHUB_WORKSPACE" | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git pull origin main || git reset --hard origin/main | ||
sed -r -i 's/(^ARG BIOCONDUCTOR_PATCH=)([0-9]+)$/echo "\1$((\2+1))"/ge' Dockerfile | ||
git add Dockerfile | ||
git commit -m "Bump BIOCONDUCTOR_PATCH" | ||
git push | ||
This file was deleted.
Oops, something went wrong.