Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mybee
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
mybee
Commits
91a4a249
Unverified
Commit
91a4a249
authored
Apr 15, 2021
by
Ivan Vandot
Committed by
GitHub
Apr 15, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
publish docker image to quay.io as well (#1554)
parent
393b51e6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
0 deletions
+37
-0
beekeeper.yml
.github/workflows/beekeeper.yml
+3
-0
release.yaml
.github/workflows/release.yaml
+6
-0
.goreleaser.yml
.goreleaser.yml
+28
-0
No files found.
.github/workflows/beekeeper.yml
View file @
91a4a249
...
...
@@ -140,8 +140,11 @@ jobs:
if
:
github.ref == 'refs/heads/master' && github.event.action != 'beekeeper' && success()
run
:
|
docker tag registry.localhost:5000/ethersphere/bee:latest ethersphere/bee:latest
docker tag registry.localhost:5000/ethersphere/bee:latest quay.io/ethersphere/bee:latest
printf ${{ secrets.DOCKERHUB_PASSWORD }} | docker login --username ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
printf ${{ secrets.QUAY_PASSWORD }} | docker login --username ${{ secrets.QUAY_USERNAME }} quay.io --password-stdin
docker push ethersphere/bee:latest
docker push quay.io/ethersphere/bee:latest
echo RUN_TYPE="MERGE RUN" >> $GITHUB_ENV
-
name
:
Set IMAGE_DIGEST variable
if
:
github.ref == 'refs/heads/master' && github.event.action != 'beekeeper' && success()
...
...
.github/workflows/release.yaml
View file @
91a4a249
...
...
@@ -25,6 +25,12 @@ jobs:
DOCKER_PASSWORD
:
${{ secrets.DOCKER_PASSWORD }}
run
:
|
echo "${DOCKER_PASSWORD}" | docker login --username "${DOCKER_USERNAME}" --password-stdin
-
name
:
Quay Login
env
:
QUAY_USERNAME
:
${{ secrets.QUAY_USERNAME }}
QUAY_PASSWORD
:
${{ secrets.QUAY_PASSWORD }}
run
:
|
echo "${QUAY_PASSWORD}" | docker login --username "${QUAY_USERNAME}" quay.io --password-stdin
-
name
:
Set up QEMU
uses
:
docker/setup-qemu-action@v1
-
name
:
Set up Docker Buildx
...
...
.goreleaser.yml
View file @
91a4a249
...
...
@@ -230,6 +230,7 @@ brews:
dockers
:
-
image_templates
:
-
"
ethersphere/bee:{{
.Version
}}-amd64"
-
"
quay.io/ethersphere/bee:{{
.Version
}}-amd64"
use_buildx
:
true
ids
:
-
linux
...
...
@@ -244,6 +245,7 @@ dockers:
-
"
--label=org.opencontainers.image.version={{.Version}}"
-
image_templates
:
-
"
ethersphere/bee:{{
.Version
}}-armv7"
-
"
quay.io/ethersphere/bee:{{
.Version
}}-armv7"
use_buildx
:
true
ids
:
-
linux
...
...
@@ -259,6 +261,7 @@ dockers:
-
"
--label=org.opencontainers.image.version={{.Version}}"
-
image_templates
:
-
"
ethersphere/bee:{{
.Version
}}-arm64v8"
-
"
quay.io/ethersphere/bee:{{
.Version
}}-arm64v8"
use_buildx
:
true
ids
:
-
linux
...
...
@@ -297,3 +300,28 @@ docker_manifests:
-
ethersphere/bee:{{ .Version }}-amd64
-
ethersphere/bee:{{ .Version }}-armv7
-
ethersphere/bee:{{ .Version }}-arm64v8
-
name_template
:
quay.io/ethersphere/bee:{{ .Major }}
image_templates
:
-
quay.io/ethersphere/bee:{{ .Version }}-amd64
-
quay.io/ethersphere/bee:{{ .Version }}-armv7
-
quay.io/ethersphere/bee:{{ .Version }}-arm64v8
-
name_template
:
quay.io/ethersphere/bee:{{ .Major }}.{{ .Minor }}
image_templates
:
-
quay.io/ethersphere/bee:{{ .Version }}-amd64
-
quay.io/ethersphere/bee:{{ .Version }}-armv7
-
quay.io/ethersphere/bee:{{ .Version }}-arm64v8
-
name_template
:
quay.io/ethersphere/bee:{{ .Major }}.{{ .Minor }}.{{ .Patch }}
image_templates
:
-
quay.io/ethersphere/bee:{{ .Version }}-amd64
-
quay.io/ethersphere/bee:{{ .Version }}-armv7
-
quay.io/ethersphere/bee:{{ .Version }}-arm64v8
-
name_template
:
quay.io/ethersphere/bee:latest
image_templates
:
-
quay.io/ethersphere/bee:{{ .Version }}-amd64
-
quay.io/ethersphere/bee:{{ .Version }}-armv7
-
quay.io/ethersphere/bee:{{ .Version }}-arm64v8
-
name_template
:
quay.io/ethersphere/bee:beta
image_templates
:
-
quay.io/ethersphere/bee:{{ .Version }}-amd64
-
quay.io/ethersphere/bee:{{ .Version }}-armv7
-
quay.io/ethersphere/bee:{{ .Version }}-arm64v8
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment