Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
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
frontend
Commits
7e8ca8cb
Commit
7e8ca8cb
authored
Aug 29, 2023
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add image publish step to release workflow
parent
d7b7b83b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
0 deletions
+60
-0
release.yml
.github/workflows/release.yml
+60
-0
No files found.
.github/workflows/release.yml
View file @
7e8ca8cb
...
@@ -68,3 +68,63 @@ jobs:
...
@@ -68,3 +68,63 @@ jobs:
field_value
:
Released
field_value
:
Released
issues
:
${{ needs.label_released_issues.outputs.issues }}
issues
:
${{ needs.label_released_issues.outputs.issues }}
secrets
:
inherit
secrets
:
inherit
# TODO @tom2drum refactor to reusable workflow
publish_image
:
name
:
Publish Docker image
runs-on
:
ubuntu-latest
outputs
:
shortSha
:
${{ steps.output-step.outputs.short-sha }}
tags
:
${{ steps.meta.outputs.tags }}
steps
:
-
name
:
Check out the repo
uses
:
actions/checkout@v3
-
name
:
Inject slug/short variables
uses
:
rlespinasse/github-slug-action@v4.4.1
-
name
:
Set up Docker Buildx
uses
:
docker/setup-buildx-action@v2
# Will automatically make nice tags, see the table here https://github.com/docker/metadata-action#basic
-
name
:
Docker meta
id
:
meta
uses
:
docker/metadata-action@v4
with
:
images
:
ghcr.io/blockscout/frontend
-
name
:
Login to GitHub Container Registry
uses
:
docker/login-action@v2
with
:
registry
:
ghcr.io
username
:
${{ github.actor }}
password
:
${{ secrets.GITHUB_TOKEN }}
-
name
:
Add SHORT_SHA env property with commit short sha
run
:
echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
-
name
:
Debug
env
:
REF_TYPE
:
${{ github.ref_type }}
REF_NAME
:
${{ github.ref_name }}
run
:
|
echo "ref_type: $REF_TYPE"
echo "ref_name: $REF_NAME"
-
name
:
Add outputs
run
:
|
echo "::set-output name=short-sha::${{ env.GITHUB_EVENT_PULL_REQUEST_HEAD_SHA_SHORT }}"
id
:
output-step
-
name
:
Build and push
uses
:
docker/build-push-action@v3
with
:
context
:
.
file
:
./Dockerfile
push
:
true
cache-from
:
type=gha
tags
:
${{ steps.meta.outputs.tags }}
labels
:
${{ steps.meta.outputs.labels }}
build-args
:
|
GIT_COMMIT_SHA=${{ env.SHORT_SHA }}
GIT_TAG=${{ github.ref_type == 'tag' && github.ref_name || '' }}
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