-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (36 loc) · 1.26 KB
/
docker-image.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Build Docker Image & Publish Dashboard
on:
push:
branches:
- main
# 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
push: true
tags: gtmnerr/dashboard:latest
no-cache: true
build-args: |
BRANCH_NAME=${{ github.ref_name }}
# 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:latest