-
Notifications
You must be signed in to change notification settings - Fork 10
42 lines (42 loc) · 974 Bytes
/
build_workflow.yml
File metadata and controls
42 lines (42 loc) · 974 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
38
39
40
41
42
name: Build workflow
run-name: Build workflow
on:
workflow_dispatch:
push:
branches:
- master
- perl_40
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
perl:
runs-on: ubuntu-latest
steps:
-
name: Checkout code
uses: actions/checkout@v4
-
name: Build Docker Image
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09
with:
context: '.'
tags: deriv/perl:latest
push: false
dzil:
needs: perl
runs-on: ubuntu-latest
steps:
-
name: Checkout code
uses: actions/checkout@v4
-
name: Build Docker Image
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09
with:
context: 'dzil/'
tags: deriv/dzil:latest
push: false
hadolint:
uses: ./.github/workflows/hadolint.yml