CRAN 1.2.2 #15
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: Build tag | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
rexyai/restrserve | |
tags: | | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
- name: Docker meta alpine | |
id: meta_alpine | |
uses: docker/metadata-action@v4 | |
with: | |
flavor: | | |
suffix=-alpine,onlatest=true | |
images: | | |
rexyai/restrserve | |
tags: | | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: dselivanov | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Build and push standard image | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
context: . | |
file: ./docker/Dockerfile | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Build and push alpine image | |
uses: docker/build-push-action@v3 | |
with: | |
push: true | |
context: . | |
file: ./docker/Dockerfile-r-minimal | |
tags: ${{ steps.meta_alpine.outputs.tags }} | |
labels: ${{ steps.meta_alpine.outputs.labels }} | |
# - name: Set tag name | |
# run: echo "TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV && \ | |
# echo "DOCKER_IMAGE=rexyai/restrserve:$(echo $TAG | tr -dc '0-9\.')" >> $GITHUB_ENV | |
# - name: Build standard image | |
# run: docker build -t $(echo $DOCKER_IMAGE) -f docker/Dockerfile . | |
# - name: Build alpine image | |
# run: docker build -t $(echo $DOCKER_IMAGE)-alpine -f docker/Dockerfile-r-minimal . | |
# - name: Push images | |
# run: | |
# docker push $(echo $DOCKER_IMAGE) && \ | |
# docker push $(echo $DOCKER_IMAGE)-alpine |