We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents af08fb8 + 0d14831 commit 2ea360bCopy full SHA for 2ea360b
.github/workflows/docker-ci.yml renamed to .github/workflows/docker-cd.yml
@@ -1,4 +1,4 @@
1
-name: Docker CI
+name: Docker CD
2
3
# This workflow uses actions that are not certified by GitHub.
4
# They are provided by a third-party and are governed by
@@ -7,22 +7,23 @@ name: Docker CI
7
8
on:
9
push:
10
- branches: [ "main" ]
+ branches:
11
+ - "main"
12
# Publish semver tags as releases.
- tags: [ 'v*.*.*' ]
13
+ tags:
14
+ - 'v[0-9]+.[0-9]+.[0-9]+*'
15
pull_request:
16
17
18
19
env:
20
# Use docker.io for Docker Hub if empty
21
REGISTRY: docker.io
22
# github.repository as <account>/<repo>
23
IMAGE_NAME: pythongermany/webserv
24
-
25
jobs:
- docker-ci:
26
+ docker-cd:
27
runs-on: ubuntu-latest
28
permissions:
29
contents: read
0 commit comments