-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (36 loc) · 1.12 KB
/
docker.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
name: Build and Push Image samply/lens
on:
push:
branches:
- main
# Build then a new version is tagged
tags:
- 'v*.*.*'
pull_request:
branches:
- main
schedule:
# Build every night at 1am
- cron: '0 1 * * *'
jobs:
build:
# Necessary after this repository was renamed from samply/lens-web-components to samply/lens
permissions:
contents: read
packages: write
pull-requests: read
security-events: write
statuses: read
# This workflow defines how a samply docker image is built, tested and published.
# Visit: https://github.com/samply/github-workflows/blob/main/.github/workflows/docker-ci.yml, for more information
uses: samply/github-workflows/.github/workflows/docker-ci.yml@main
with:
image-name: "samply/lens"
build-args: |
TARGET_ENVIRONMENT=production
build-platforms: "linux/amd64"
push-to: dockerhub
# This passes the secrets from calling workflow to the called workflow
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}