-
Notifications
You must be signed in to change notification settings - Fork 693
37 lines (33 loc) · 869 Bytes
/
deploy-main.yml
File metadata and controls
37 lines (33 loc) · 869 Bytes
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: Deploy from main branch
on:
# NOTE: Currently disabled to avoid unnecessary deployments since we only publish private images and do not use unstable builds in our internal pipelines.
# push:
# branches:
# - main
# paths-ignore:
# - '.github/ISSUE_TEMPLATE/**'
# - '.husky/**'
# - '.vscode/**'
# - 'docs/**'
# - 'vitest/**'
# - 'mocks/**'
# - 'playwright/**'
# - 'stubs/**'
# - 'tools/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: write
jobs:
publish_image:
name: Publish Docker image
uses: './.github/workflows/publish-image.yml'
secrets: inherit
with:
tags: |
type=ref,event=branch
type=raw,value=unstable
platforms: linux/amd64