-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (40 loc) · 1.56 KB
/
docker-image-dev.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
44
45
46
47
48
name: Build & Publish Dashboard-dev
on:
push:
branches:
- hotfix/** # Matches any branch with prefix 'hotfix/'
- release/** # Matches any branch with prefix 'release/'
- develop/** # Matches the 'develop' branch
# 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