Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
Drone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
Drone
Commits
8dd60036
Commit
8dd60036
authored
2 years ago
by
DeathwingTheBoss
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
https://github.com/DeathwingTheBoss/drone
parents
f8f1c1da
d5c2ee71
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/docker-image.yml
+41
-0
41 additions, 0 deletions
.github/workflows/docker-image.yml
with
41 additions
and
0 deletions
.github/workflows/docker-image.yml
0 → 100644
+
41
−
0
View file @
8dd60036
on
:
push
:
# Publish `master` as Docker `latest` image.
branches
:
-
master
env
:
IMAGE_NAME
:
drone
jobs
:
# Push image to GitHub Packages.
# See also https://docs.docker.com/docker-hub/builds/
push
:
runs-on
:
ubuntu-latest
permissions
:
packages
:
write
contents
:
read
steps
:
-
uses
:
actions/checkout@v3
-
name
:
Build image
run
:
docker build . --file Dockerfile --tag $IMAGE_NAME
-
name
:
Log in to registry
# This is where you will update the PAT to GITHUB_TOKEN
run
:
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
-
name
:
Push image
run
:
|
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Use Docker `latest` tag convention
[ "$VERSION" == "master" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment