Version 3.0alpha2 - 12/30/24 Critical bug fix and an enhancement #106
Workflow file for this run
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
name: Upload release to DockerHub and ECR | |
on: | |
release: | |
types: [published] | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/setup@v3 | |
with: | |
versionSpec: '5.x' | |
- name: Install Checkout | |
uses: actions/[email protected] | |
with: | |
ref: ${{ github.head_ref }} # checkout the correct branch name | |
fetch-depth: 0 | |
- name: Determine Version | |
id: gitversion # id to later be referenced | |
uses: gittools/actions/gitversion/execute@v3 | |
with: | |
additionalArguments: /config commit-date-format="yyyy-MM-ddTHH:mm:ss-0000" | |
- name: Alternate Git Version | |
id: alternategitversion | |
uses: codacy/[email protected] | |
with: | |
release-branch: 'main' | |
prefix: 'v' | |
- name: Direct Git Version | |
id: directgitversion | |
run: | | |
GITDIRECTVERSION=`git describe --tags --dirty` | |
echo "GITDIRECTVERSION=${GITDIRECTVERSION}" >> $GITHUB_ENV | |
- name: Display GitVersion outputs (step output) | |
run: | | |
GITSHA=${{ steps.gitversion.outputs.Sha }} | |
GITSHA8=${GITSHA:0:8} | |
GITCOMMITS=${{ steps.gitversion.outputs.CommitsSinceVersionSource }} | |
GITPREVVERSION=${{ steps.alternategitversion.outputs.previous-version }} | |
GITVERSION=${GITPREVVERSION}+${GITCOMMITS}.g${GITSHA8} | |
GITTIME=`git show | grep Date | head -n 1 | awk '{print $5 $7}'` | |
GITDATE=${{ steps.gitversion.outputs.commitDate }}"T"${GITTIME} | |
echo "GITVERSION=${GITVERSION}" >> $GITHUB_ENV | |
echo "GITSHA=${GITSHA}" >> $GITHUB_ENV | |
echo "GITDATE=${GITDATE}" >> $GITHUB_ENV | |
BUILD_TIME=$(date -Iseconds) | |
echo "BUILD_TIME=${BUILD_TIME}" >> $GITHUB_ENV | |
- name: What | |
run: echo "BRANCH=${GITHUB_REF##*/}" >> $GITHUB_ENV | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: fredericklab/rapidtide | |
- name: Free disk space | |
run: | | |
df -h | |
sudo rm -rf ${GITHUB_WORKSPACE}/.git | |
sudo swapoff -a | |
sudo rm -f /swapfile | |
sudo apt clean | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
df -h | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v6 | |
with: | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
sbom: false | |
provenance: false | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
tags: | | |
${{ steps.meta.outputs.tags }} | |
fredericklab/rapidtide:latest-release | |
build-args: | | |
BRANCH=${{ env.BRANCH }} | |
GITVERSION=${{ env.GITVERSION }} | |
GITSHA=${{ env.GITSHA }} | |
GITDATE=${{ env.GITDATE }} | |
BUILD_TIME=${{ env.BUILD_TIME }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Copy to public.ecr.aws/rapidtide | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.DELAY_ECR_KEY }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.DELAY_ECR_SECRET }} | |
run: | | |
aws ecr-public get-login-password --region us-east-1 | skopeo login --username AWS --password-stdin public.ecr.aws/rapidtide/rapidtide | |
skopeo copy --all docker://fredericklab/rapidtide:latest-release docker://public.ecr.aws/rapidtide/rapidtide:latest-release |