Skip to content

Commit 6267ee4

Browse files
authored
Merge pull request #1 from vector-im/rdanzey/ci-test
Update CI
2 parents 15fe524 + 3654f49 commit 6267ee4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/docker-image.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Docker Image CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ main, master ]
66
pull_request:
7-
branches: [ main ]
7+
branches: [ main, master ]
88

99
jobs:
1010

@@ -15,4 +15,4 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Build the Docker image
18-
run: docker build . --file Dockerfile --tag docker-supervisord:$(date +%s)
18+
run: docker build . --file Dockerfile --tag argocd:$(date +%s)

.github/workflows/docker-publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ on:
99
schedule:
1010
- cron: '16 1 * * *'
1111
push:
12-
branches: [ main ]
12+
branches: [ main, master ]
1313
# Publish semver tags as releases.
1414
tags: [ 'v*.*.*' ]
1515
pull_request:
16-
branches: [ main ]
16+
branches: [ main, master ]
1717

1818
env:
1919
# Use docker.io for Docker Hub if empty
2020
REGISTRY: ghcr.io
2121
# github.repository as <account>/<repo>
22-
IMAGE_NAME: ${{ github.repository }}
22+
IMAGE_NAME: argocd
2323

2424

2525
jobs:

0 commit comments

Comments
 (0)