Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
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
exchain
nebula
Commits
3e09aa0a
Unverified
Commit
3e09aa0a
authored
Oct 29, 2021
by
Ben Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated CI steps
parent
f7c78498
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
0 deletions
+58
-0
publish-canary.yml
.github/workflows/publish-canary.yml
+27
-0
release.yml
.github/workflows/release.yml
+31
-0
No files found.
.github/workflows/publish-canary.yml
View file @
3e09aa0a
...
@@ -24,6 +24,7 @@ jobs:
...
@@ -24,6 +24,7 @@ jobs:
replica-healthcheck
:
${{ steps.packages.outputs.replica-healthcheck }}
replica-healthcheck
:
${{ steps.packages.outputs.replica-healthcheck }}
canary-docker-tag
:
${{ steps.docker-image-name.outputs.canary-docker-tag }}
canary-docker-tag
:
${{ steps.docker-image-name.outputs.canary-docker-tag }}
proxyd
:
${{ steps.canary-publish.outputs.proxyd }}
proxyd
:
${{ steps.canary-publish.outputs.proxyd }}
rpc-proxy
:
${{ steps.canary-publish.outputs.rpc-proxy }}
steps
:
steps
:
-
name
:
Check out source code
-
name
:
Check out source code
...
@@ -342,3 +343,29 @@ jobs:
...
@@ -342,3 +343,29 @@ jobs:
build-args
:
build-args
:
-
GITCOMMIT=$GITHUB_SHA
-
GITCOMMIT=$GITHUB_SHA
-
GITDATE=$GITDATE
-
GITDATE=$GITDATE
rpc-proxy
:
name
:
Publish rpc-proxy Version ${{ needs.canary-publish.outputs.canary-docker-tag }}
needs
:
canary-publish
if
:
needs.canary-publish.outputs.rpc-proxy != ''
runs-on
:
ubuntu:latest
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v2
-
name
:
Set up Docker Buildx
uses
:
docker/setup-buildx-action@v1
-
name
:
Login to Docker Hub
uses
:
docker/login-action@v1
with
:
username
:
${{ secrets.DOCKERHUB_ACCESS_TOKEN_USERNAME }}
password
:
${{ secrets.DOCKERHUB_ACCESS_TOKEN_SECRET }}
-
name
:
Build and push
uses
:
docker/build-push-action@v2
with
:
context
:
.
file
:
./ops/docker/Dockerfile.rpc-proxy
push
:
true
tags
:
ethereumoptimism/rpc-proxy:${{ needs.canary-publish.outputs.rpc-proxy }}
.github/workflows/release.yml
View file @
3e09aa0a
...
@@ -20,6 +20,7 @@ jobs:
...
@@ -20,6 +20,7 @@ jobs:
gas-oracle
:
${{ steps.packages.outputs.gas-oracle }}
gas-oracle
:
${{ steps.packages.outputs.gas-oracle }}
replica-healthcheck
:
${{ steps.packages.outputs.replica-healthcheck }}
replica-healthcheck
:
${{ steps.packages.outputs.replica-healthcheck }}
proxyd
:
${{ steps.packages.outputs.proxyd }}
proxyd
:
${{ steps.packages.outputs.proxyd }}
rpc-proxy
:
${{ steps.packages.outputs.rpc-proxy }}
steps
:
steps
:
-
name
:
Checkout Repo
-
name
:
Checkout Repo
...
@@ -360,3 +361,33 @@ jobs:
...
@@ -360,3 +361,33 @@ jobs:
build-args
:
build-args
:
-
GITCOMMIT=$GITHUB_SHA
-
GITCOMMIT=$GITHUB_SHA
-
GITDATE=$GITDATE
-
GITDATE=$GITDATE
rpc-proxy
:
name
:
Publish rpc-proxy Version ${{ needs.release.outputs.rpc-proxy }}
needs
:
release
if
:
needs.release.outputs.rpc-proxy != ''
runs-on
:
ubuntu:latest
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v2
-
name
:
Set up Docker Buildx
uses
:
docker/setup-buildx-action@v1
-
name
:
Login to Docker Hub
uses
:
docker/login-action@v1
with
:
username
:
${{ secrets.DOCKERHUB_ACCESS_TOKEN_USERNAME }}
password
:
${{ secrets.DOCKERHUB_ACCESS_TOKEN_SECRET }}
-
name
:
Set env
run
:
|
echo "GITDATE=$(date)" >> $GITHUB_ENV"
-
name
:
Build and push
uses
:
docker/build-push-action@v2
with
:
context
:
.
file
:
./ops/docker/Dockerfile.rpc-proxy
push
:
true
tags
:
ethereumoptimism/rpc-proxy:${{ needs.canary-publish.outputs.rpc-proxy }}
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