-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (27 loc) · 911 Bytes
/
main.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
name: Build Docker Image
on: [push, pull_request, release]
jobs:
main:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Cache node modules
uses: actions/cache@v2
with:
path: |
~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Build Docker image
run: |
docker build -t cfreak/homepage-docs:latest .
- name: Before Deploy
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')
run: |
docker logout
docker login -u "${{ secrets.DOCKER_USERNAME }}" -p "${{ secrets.DOCKER_PASSWORD }}"
- name: Deploy master branch as latest
if: github.ref == 'refs/heads/master'
run: |
docker push cfreak/homepage-docs:latest