We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd1ab73 commit 28f9cf4Copy full SHA for 28f9cf4
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '**'
7
+ - '!dependabot/**'
8
+ tags:
9
+ - 'v*.*.*'
10
+ pull_request:
11
12
+ - 'master'
13
+ - 'main'
14
+ - 'gh-pages'
15
+ schedule:
16
+ - cron: '25 3 */7 * *'
17
+ workflow_dispatch:
18
19
+concurrency:
20
+ group: ${{ github.workflow }}-{{ github.head_ref || github.ref }}
21
+ cancel-in-progress: true
22
23
+jobs:
24
+ container-build:
25
+ uses: openstreetmap/github-shared-workflows/.github/workflows/container-build-publish.yml@main
.github/workflows/docker-publish.yml
0 commit comments