Skip to content

Commit

Permalink
release stable with tagged evm-server
Browse files Browse the repository at this point in the history
Signed-off-by: Pranay Valson <[email protected]>
  • Loading branch information
noslav committed Mar 25, 2024
1 parent fc37548 commit 2982e00
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/docker-push-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ name: docker-push-stable

on:
push:
branches:
- "covalent"

tags:
- "v*.*.*"
jobs:
deploy-test:
runs-on: ubuntu-latest
tagged-release:
name: Tagged Release
runs-on: "ubuntu-latest"

steps:
- name: Login to Artifact Registry/GCR
- name: Login to GCR
uses: docker/login-action@v2
with:
registry: us-docker.pkg.dev
Expand All @@ -20,6 +21,18 @@ jobs:
# - uses: satackey/[email protected]
# # Ignore the failure of a step and avoid terminating the job.
# continue-on-error: true
- name: Set env
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV

- name: Build & Publish the Docker image
run: |
docker buildx create --name builder --use --platform=linux/amd64,linux/arm64 && docker buildx build --file ./Dockerfile-evm --platform=linux/amd64,linux/arm64 . -t us-docker.pkg.dev/covalent-project/network/evm-server:stable --push
docker buildx create --name builder --use --platform=linux/amd64,linux/arm64 && docker buildx build --file ./Dockerfile-evm --platform=linux/amd64,linux/arm64 . -t us-docker.pkg.dev/covalent-project/network/evm-server:stable --push
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
draft: false
prerelease: false
files: |
*.zip
*.tar.gz
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project_name: erigon

release:
disable: false
disable: true
draft: true
prerelease: auto

Expand Down

0 comments on commit 2982e00

Please sign in to comment.