Build & Publish Dashboard-dev #21
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 & Publish Dashboard-dev | |
on: | |
push: | |
branches: | |
- hotfix/** # Matches any branch with prefix 'hotfix/' | |
- release/** # Matches any branch with prefix 'release/' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
# Build and push the Docker image to dockerhub | |
- name: Build and push docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: ./05_DASHBOARD/Dockerfile-dev | |
push: true | |
tags: gtmnerr/dashboard-dev:latest | |
no-cache: true | |
build-args: | | |
BRANCH_NAME=${{ github.ref_name }} | |
- name: List contents of the app directory | |
run: docker run --rm gtmnerr/dashboard-dev:latest ls /usr/src/dashboard-development/ | |
# run the docker image to publish to shinyapps.io | |
- name: Run docker image | |
# CHANGE ALL VARIABLES TO BE SECRETS ON GITHUB ### | |
run: > | |
docker run -e SHINY_ACC_NAME=${{ secrets.SHINY_ACC_NAME }} -e SHINY_TOKEN=${{ secrets.SHINY_TOKEN }} -e SHINY_SECRET=${{ secrets.SHINY_SECRET }} gtmnerr/dashboard-dev:latest |