Skip to content

Commit

Permalink
Merge pull request #563 from FNNDSC/update-gha
Browse files Browse the repository at this point in the history
Update GitHub Actions
  • Loading branch information
jennydaman authored Aug 26, 2024
2 parents ffcd5ee + 62c9760 commit d8fc529
Showing 1 changed file with 11 additions and 26 deletions.
37 changes: 11 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: FNNDSC/cube-integration-action@master
with:
repository: ${{ github.workspace }}
Expand All @@ -26,17 +26,11 @@ jobs:
env:
repo_name: fnndsc/cube
steps:
- name: Get git tag
id: git_info
if: startsWith(github.ref, 'refs/tags/')
run: echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
- name: Determine image tags
id: determine
env:
git_tag: ${{ steps.git_info.outputs.tag }}
run: |
repo=${{ env.repo_name }}
tag="${git_tag:-latest}" # if build triggered by tag, use tag name
repo="${{ env.repo_name }}"
tag="${GITHUB_REF_NAME:-latest}" # if build triggered by tag, use tag name
# if tag is a version number prefixed by 'v', remove the 'v'
if [[ "$tag" =~ ^v[0-9].* ]]; then
Expand All @@ -47,31 +41,22 @@ jobs:
echo $dock_image
echo "dock_image=$dock_image" >> $GITHUB_OUTPUT
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
id: buildx
- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
push: true
context: .
Expand All @@ -80,11 +65,11 @@ jobs:
docker.io/${{ steps.determine.outputs.dock_image }}
ghcr.io/${{ steps.determine.outputs.dock_image }}
platforms: linux/amd64,linux/ppc64le,linux/arm64
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Update Docker Hub description
uses: peter-evans/dockerhub-description@v3
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
Expand Down

0 comments on commit d8fc529

Please sign in to comment.