Merge pull request #38 from briank-git/main #18
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: Rebuild and publish ubcdsci/r-dsci-100 and ubcdsci/r-dsci-100-grading on DockerHub | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "docker/r-dsci-100/Dockerfile" | |
- "docker/r-dsci-100-grading/Dockerfile" | |
jobs: | |
rebuild-docker: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: "0" | |
ref: "main" | |
- name: Create release tag | |
id: release | |
shell: bash | |
run: echo "tag=$(git rev-parse --short=12 HEAD)" >> $GITHUB_OUTPUT | |
- name: Rebuild and publish r-dsci-100 image | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: ubcdsci/r-dsci-100 | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
workdir: "docker/r-dsci-100" | |
tags: "latest,${{ steps.release.outputs.tag }}" | |
- name: Rebuild and publish r-dsci-100-grading image | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
with: | |
name: ubcdsci/r-dsci-100-grading | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
workdir: "docker/r-dsci-100-grading" | |
tags: "latest,${{ steps.release.outputs.tag }}" |