Skip to content

Commit

Permalink
chore: Adds workflows for R 4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
andyquinterom committed Jun 19, 2024
1 parent 8c7ffbb commit 007185f
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,37 @@ jobs:
target
/home/runner/.cargo
key: ${{ steps.target-cache-restore.outputs.cache-primary-key }}
build-r44:
name: Build Docker Image (R 4.4)
needs: required
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Docker image
env:
PLATFORM: linux/amd64,linux/arm64
TAG_V: ixpantia/faucet:${{ github.ref_name }}-r4.4
TAG_R: ixpantia/faucet:r4.4
TAG_LATEST: ixpantia/faucet:latest
run: |
docker buildx build \
--platform $PLATFORM \
--push \
-t $TAG_V \
-t $TAG_R \
-t $TAG_LATEST \
--build-arg R_VERSION=4.4 \
.
build-r43:
name: Build Docker Image (R 4.3)
needs: required
Expand Down Expand Up @@ -67,7 +98,6 @@ jobs:
--push \
-t $TAG_V \
-t $TAG_R \
-t $TAG_LATEST \
--build-arg R_VERSION=4.3 \
.
build-r42:
Expand Down

0 comments on commit 007185f

Please sign in to comment.