Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 2fc6ae5
Author: Andrew Nikitin <andrew.nikitin@cheqd.io>
Date:   Tue Aug 16 15:48:13 2022 +0300

    build: Multi-platform AMD64/ARM64 for Linux (#366)

    Signed-off-by: Andrew Nikitin <andrew.nikitin@evernym.com>
    Co-authored-by: Ankur Banerjee <ankurdotb@users.noreply.github.com>

commit 7485eb2
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Aug 15 15:37:31 2022 +0100

    chore(deps): Bump github.com/stretchr/testify from 1.7.1 to 1.8.0 (#362)

    Bumps github.com/stretchr/testify from 1.7.1 to 1.8.0.

    Commits

    181cea6 impr: CallerInfo should print full paths to the terminal (#1201)
    cf1284f Allow mock expectations to be ordered (#1106)
    66eef0e fix: assert.MapSubset (or just support maps in assert.Subset) (#1178)
    2fab6df Add WithinTimeRange method (#1188)
    b5ce165 fixing panic in calls to assertion with nil m.mutex (#1212)
    c206b2e Mock can be deadlocked by a panic (#1157)
    1b73601 suite: correctly set stats on test panic (#1195)
    ba1076d Add .Unset method to mock (#982)
    c31ea03 Support comparing byte slice (#1202)
    48391ba Fix panic in AssertExpectations for mocks without expectations (#1207)
    Additional commits viewable in compare view

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    @dependabot rebase will rebase this PR
    @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    @dependabot merge will merge this PR after your CI passes on it
    @dependabot squash and merge will squash and merge this PR after your CI passes on it
    @dependabot cancel merge will cancel a previously requested merge and block automerging
    @dependabot reopen will reopen this PR if it is closed
    @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Ankur Banerjee <ankurdotb@users.noreply.github.com>

commit 1e3e807
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Aug 15 15:14:40 2022 +0100

    chore(deps): Bump github.com/lestrrat-go/jwx from 1.2.20 to 1.2.25 (#359)

    Bumps github.com/lestrrat-go/jwx from 1.2.20 to 1.2.25.

    Release notes
    Sourced from github.com/lestrrat-go/jwx's releases.

    v1.2.25
    v1.2.25 23 May 2022
    [Bug Fixes][Security]
      * [jwe] An old bug from at least 7 years ago existed in handling AES-CBC unpadding,
        where the unpad operation might remove more bytes than necessary ([#744](lestrrat-go/jwx#744))
        This affects all jwx code that is available before v2.0.2 and v1.2.25.

    v1.2.24
    v1.2.24 05 May 2022
    [Security]
      * Upgrade golang.org/x/crypto ([#724](lestrrat-go/jwx#724))

    v1.2.23
    v1.2.23 13 Apr 2022
    [Bug fixes]
      * [jwk] jwk.AutoRefresh had a race condition when `Configure()` was
        called concurrently ([#686](lestrrat-go/jwx#686))
        (It has been patched correctly, but we may come back to revisit
         the design choices in the near future)

    v1.2.22
    v1.2.22 08 Apr 2022
    [Bug fixes]
      * [jws] jws.Verify was ignoring the `b64` header when it was present
        in the protected headers ([#681](lestrrat-go/jwx#681)). Now the following should work:
      jws.Sign(..., jws.WithDetachedPayload(payload))
      // previously payload had to be base64 encoded
      jws.Verify(..., jws.WithDetachedPayload(payload))
    (note: v2 branch was not affected)

    v1.2.21
    v1.2.21 30 Mar 2022
    [Bug fixes]
      * [jwk] RSA keys without p and q can now be parsed.

    Changelog
    Sourced from github.com/lestrrat-go/jwx's changelog.

    v1.2.25 23 May 2022
    [Bug Fixes][Security]

    [jwe] An old bug from at least 7 years ago existed in handling AES-CBC unpadding,
    where the unpad operation might remove more bytes than necessary (#744)
    This affects all jwx code that is available before v2.0.2 and v1.2.25.

    v1.2.24 05 May 2022
    [Security]

    Upgrade golang.org/x/crypto (#724)

    v1.2.23 13 Apr 2022
    [Bug fixes]

    [jwk] jwk.AutoRefresh had a race condition when Configure() was
    called concurrently (#686)
    (It has been patched correctly, but we may come back to revisit
    the design choices in the near future)

    v1.2.22 08 Apr 2022
    [Bug fixes]

    [jws] jws.Verify was ignoring the b64 header when it was present
    in the protected headers (#681). Now the following should work:
    jws.Sign(..., jws.WithDetachedPayload(payload))
    // previously payload had to be base64 encoded
    jws.Verify(..., jws.WithDetachedPayload(payload))
    (note: v2 branch was not affected)

    v1.2.21 30 Mar 2022
    [Bug fixes]

    [jwk] RSA keys without p and q can now be parsed.

    Commits

    ad8c29d merge develop/v1 (#747)
    e38f677 Merge develop/v1 (#727)
    baba561 Merge branch 'develop/v1' into v1
    8ff6c75 Update Changes
    ea97e8c Fix race in jwk.AutoRefresh (#686)
    f4701e1 Update Changes
    e831228 Fix jws.Verify not respecting the b64 header in the protected headers (#683)
    b66a2cb backport: Update golangci lint (#679) (#680)
    4899c32 reword error
    dd9e4c4 Bump github.com/lestrrat-go/httpcc from 1.0.0 to 1.0.1 (#675)
    Additional commits viewable in compare view

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    @dependabot rebase will rebase this PR
    @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    @dependabot merge will merge this PR after your CI passes on it
    @dependabot squash and merge will squash and merge this PR after your CI passes on it
    @dependabot cancel merge will cancel a previously requested merge and block automerging
    @dependabot reopen will reopen this PR if it is closed
    @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Ankur Banerjee <ankurdotb@users.noreply.github.com>

commit a56cfeb
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Aug 15 14:50:56 2022 +0100

    chore(deps): Bump github.com/spf13/viper from 1.10.1 to 1.12.0 (#360)

    Bumps github.com/spf13/viper from 1.10.1 to 1.12.0.

    Release notes
    Sourced from github.com/spf13/viper's releases.

    v1.12.0
    This release makes YAML v3 and TOML v2 the default versions used for encoding.
    You can switch back to the old versions by adding viper_yaml2 and viper_toml1 to the build tags.
    Please note that YAML v2 and TOML v1 are considered deprecated from this release and may be removed in a future release.
    Please provide feedback in discussions and report bugs on the issue tracker. Thanks!

    What's Changed
    Exciting New Features 🎉

    Add etcd3 support to remote by @​sagikazarmark in spf13/viper#1356
    Make YAML 3 the default by @​sagikazarmark in spf13/viper#1357
    Make TOML 2 the default by @​sagikazarmark in spf13/viper#1358

    Enhancements 🚀

    chore: fix Error log calls in mergeMaps by @​wwade in spf13/viper#1341
    Add MustBindEnv by @​meowfaceman in spf13/viper#1301

    Dependency Updates ⬆️

    build(deps): bump github/codeql-action from 1 to 2 by @​dependabot in spf13/viper#1336
    build(deps): bump github.com/pelletier/go-toml/v2 from 2.0.0-beta.8 to 2.0.0 by @​dependabot in spf13/viper#1339
    build(deps): bump github.com/mitchellh/mapstructure from 1.4.3 to 1.5.0 by @​dependabot in spf13/viper#1332
    build(deps): bump github.com/pelletier/go-toml from 1.9.4 to 1.9.5 by @​dependabot in spf13/viper#1335
    build(deps): bump github.com/fsnotify/fsnotify from 1.5.1 to 1.5.4 by @​dependabot in spf13/viper#1338
    build(deps): bump github.com/spf13/cast from 1.4.1 to 1.5.0 by @​dependabot in spf13/viper#1344
    build(deps): bump github.com/pelletier/go-toml/v2 from 2.0.0 to 2.0.1 by @​dependabot in spf13/viper#1343
    build(deps): bump github.com/subosito/gotenv from 1.2.0 to 1.3.0 by @​dependabot in spf13/viper#1349

    New Contributors

    @​meowfaceman made their first contribution in spf13/viper#1301
    @​wwade made their first contribution in spf13/viper#1341

    Full Changelog: spf13/viper@v1.11.0...v1.12.0
    v1.11.0

    What's Changed
    Exciting New Features 🎉

    Experimental yaml v3 library support by @​sagikazarmark in spf13/viper#1273
    Experimental toml v2 support by @​sagikazarmark in spf13/viper#1274
    Experimental logger by @​sagikazarmark in spf13/viper#1275

    Enhancements 🚀

    Remove unnecessary operand by @​steviebps in spf13/viper#1213
    Improve encoding layer by @​sagikazarmark in spf13/viper#1167
    Allow merging configs with different types of leaf values by @​illarion in spf13/viper#1181

    Bug Fixes 🐛

    Disable race detector on windows by @​sagikazarmark in spf13/viper#1269

    ... (truncated)

    Commits

    4322cf2 feat: make toml2 the default
    8d02999 feat: make yaml3 the default
    7c35aa9 chore(deps): update yaml3
    433821f feat: add etcd3 support to remote
    2080d43 chore: update crypt
    da55858 chore: fix Error log calls in mergeMaps
    f50ce90 Add in MustBindEnv.
    3b836e5 build(deps): bump github.com/subosito/gotenv from 1.2.0 to 1.3.0
    5d65186 build(deps): bump github.com/pelletier/go-toml/v2 from 2.0.0 to 2.0.1
    9f85518 build(deps): bump github.com/spf13/cast from 1.4.1 to 1.5.0
    Additional commits viewable in compare view

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    @dependabot rebase will rebase this PR
    @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    @dependabot merge will merge this PR after your CI passes on it
    @dependabot squash and merge will squash and merge this PR after your CI passes on it
    @dependabot cancel merge will cancel a previously requested merge and block automerging
    @dependabot reopen will reopen this PR if it is closed
    @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Ankur Banerjee <ankurdotb@users.noreply.github.com>

commit a5aef25
Author: Ankur Banerjee <ankurdotb@users.noreply.github.com>
Date:   Mon Aug 15 10:44:13 2022 +0100

    build: Optimise Docker build (#365)

commit 4517a19
Author: Andrew Nikitin <andrew.nikitin@cheqd.io>
Date:   Sat Aug 13 03:55:47 2022 +0300

    ci: Add automated semantic release using Goreleaser (#357)

    Co-authored-by: Ankur Banerjee <ankurdotb@users.noreply.github.com>

commit 5a30740
Author: Ankur Banerjee <ankurdotb@users.noreply.github.com>
Date:   Sat Aug 13 01:53:06 2022 +0100

    ci: Disable cleanup dry-run

commit 3e8aea4
Author: Ankur Banerjee <ankurdotb@users.noreply.github.com>
Date:   Sat Aug 13 01:42:43 2022 +0100

    ci: Fix linting error

commit c335aba
Author: Ankur Banerjee <ankurdotb@users.noreply.github.com>
Date:   Sat Aug 13 01:38:00 2022 +0100

    ci: Make workflow cleanup choices easier

commit d89f496
Author: Ankur Banerjee <ankurdotb@users.noreply.github.com>
Date:   Sat Aug 13 01:29:14 2022 +0100

    ci: Cleanup old workflow runs (#364)
  • Loading branch information
ankurdotb committed Aug 16, 2022
1 parent 953837e commit ed9b26f
Show file tree
Hide file tree
Showing 18 changed files with 10,708 additions and 145 deletions.
12 changes: 6 additions & 6 deletions .dockerignore
Expand Up @@ -2,11 +2,11 @@
**/*.md

# Skip build/test folders
build-tools/
installer/
networks/
tests/
build-tools/**
installer/**
networks/**
tests/**

# Skip Git-related folders
.github
.git
.github/**
**/.git
49 changes: 15 additions & 34 deletions .github/workflows/build.yml
@@ -1,10 +1,6 @@
name: "Build"
on:
workflow_call:
outputs:
VERSION:
description: "Build version number"
value: ${{ jobs.build-binary.outputs.VERSION }}
defaults:
run:
shell: bash
Expand All @@ -13,10 +9,8 @@ defaults:
jobs:

build-binary:
name: "Build node binary"
name: "Node binary"
runs-on: ubuntu-latest
outputs:
VERSION: ${{ steps.set-version.outputs.VERSION }}

steps:
- uses: actions/checkout@v3
Expand All @@ -26,39 +20,29 @@ jobs:
- uses: actions/setup-go@v3
with:
go-version-file: ./go.mod
cache: true

- name: Run Golang unit tests
run: go test -v ./...

# - uses: bufbuild/buf-setup-action@v1.7.0
# env:
# BUF_TOKEN: ${{ secrets.BUF_TOKEN }}

# Calls a section in Makefile > Makefile > make/proto.mk > protocgen.sh
- name: Generate Protobufs
run: make proto-gen
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser
version: latest
args: build --rm-dist --snapshot --id ubuntu-latest-amd64

- name: Build node binary
run: |
make build
- name: Store artifact
uses: actions/upload-artifact@v3
with:
name: cheqd-noded
path: build/cheqd-noded
path: dist/**/cheqd-noded

- name: Set version number
id: set-version
run: |
VERSION=$(build/cheqd-noded version 2>&1)
echo ::set-output name=VERSION::"$VERSION"
- name: Run Golang unit tests
run: go test -v ./...

build-docker:
name: "Build Docker image"
name: "Docker image"
runs-on: ubuntu-latest
env:
DOCKER_TEST_IMAGE: ${{ github.repository }}:test
DOCKER_TEST_IMAGE: ${{ github.repository }}:${{ github.sha }}

steps:
- uses: actions/checkout@v3
Expand All @@ -69,10 +53,7 @@ jobs:
with:
go-version-file: ./go.mod

- name: Generate Protobufs
run: make proto-gen

- name: Set up Docker Buildx
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
id: buildx
with:
Expand All @@ -90,7 +71,7 @@ jobs:
tags: ${{ env.DOCKER_TEST_IMAGE }}
outputs: type=docker,dest=/tmp/cheqd-node-image.tar

- name: Store Docker test image artifact
- name: Upload Docker test image
uses: actions/upload-artifact@v3
with:
name: cheqd-node-image.tar
Expand Down
46 changes: 46 additions & 0 deletions .github/workflows/cleanup.yml
@@ -0,0 +1,46 @@
name: "Cleanup"
on:
workflow_dispatch:
inputs:
days:
description: 'Retain days'
required: true
type: string
default: 30
minimum_runs:
description: 'Minimum runs to keep for each workflow'
required: true
type: string
default: 0
delete_workflow_pattern:
description: 'Name/filename of workflow. Default is all.'
required: false
type: string
delete_workflow_by_state_pattern:
description: 'Remove workflow by state: active, deleted, disabled_fork, disabled_inactivity, disabled_manually'
required: true
default: All
type: choice
options:
- All
- active
- deleted
- disabled_inactivity
- disabled_manually

jobs:

del-runs:
name: "Delete old workflow runs"
runs-on: ubuntu-latest

steps:
- uses: Mattraks/delete-workflow-runs@v2
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: ${{ github.event.inputs.days }}
keep_minimum_runs: ${{ github.event.inputs.minimum_runs }}
delete_workflow_pattern: ${{ github.event.inputs.delete_workflow_pattern }}
delete_workflow_by_state_pattern: ${{ github.event.inputs.delete_workflow_by_state_pattern }}

4 changes: 0 additions & 4 deletions .github/workflows/codeql.yml
Expand Up @@ -33,10 +33,6 @@ jobs:
with:
go-version-file: ./go.mod

- uses: bufbuild/buf-setup-action@v1.7.0
env:
BUF_TOKEN: ${{ secrets.BUF_TOKEN }}

- uses: actions/checkout@v3
with:
fetch-depth: 0 # Required to fetch version
Expand Down
17 changes: 7 additions & 10 deletions .github/workflows/dispatch.yml
Expand Up @@ -21,14 +21,11 @@ jobs:
# name: "Test"
# needs: call-build
# uses: ./.github/workflows/test.yml
# with:
# VERSION: ${{ needs.call-build.outputs.VERSION }}

# call-release:
# name: "Release"
# # needs: [call-test, call-build]
# needs: call-build
# if: ${{ github.ref_protected == true }}
# uses: ./.github/workflows/release.yml
# with:
# RELEASE_VERSION: ${{ needs.call-build.outputs.VERSION }}
call-release:
name: "Release"
# needs: [call-test, call-build]
needs: call-build
if: ${{ github.ref_protected == true }}
uses: ./.github/workflows/release.yml
secrets: inherit
143 changes: 92 additions & 51 deletions .github/workflows/release.yml
@@ -1,86 +1,127 @@
name: "Release"
on:
workflow_call:
inputs:
RELEASE_VERSION:
description: "Release version number"
type: string
defaults:
run:
shell: bash
permissions:
contents: write
packages: write


jobs:

release-packages:
name: "Release cheqd-noded binary"
release-binary:
name: "Node binary"
runs-on: ubuntu-latest
permissions:
contents: write
env:
RELEASE_VERSION: ${{ inputs.RELEASE_VERSION }}
outputs:
RELEASE_VERSION: ${{ steps.set-version.outputs.RELEASE_VERSION }}

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Required to fetch version
persist-credentials: false

- name: Download node binary from build stage
uses: actions/download-artifact@v3
- uses: actions/setup-go@v3
with:
name: cheqd-noded
path: build-tools
go-version-file: ./go.mod

- name: Restore binary permissions
run: sudo chmod +x build-tools/cheqd-noded
# Node.js setup is needed to run Semantic Release
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

# Setup for pushing to Buf.build later
- uses: bufbuild/buf-setup-action@v1.7.0

# Required for short-lived token provided to Semantic Release
- name: "Obtain Github App token"
id: app-token
uses: getsentry/action-github-app-token@v1.0.6
with:
app_id: ${{ secrets.BOT_APP_ID }}
private_key: ${{ secrets.BOT_APP_PRIVATE_KEY }}

- name: "Install Semantic Release dependencies"
run: npm ci

- name: "Execute Semantic Release"
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Set release version number
id: set-version
run: |
RELEASE_VERSION=$( git describe --tags ${{ github.sha }})
echo ::set-output name=RELEASE_VERSION::"$RELEASE_VERSION"
- uses: "marvinpinto/action-automatic-releases@latest"
# Push Protobufs to Buf.build registry
- uses: bufbuild/buf-push-action@v1
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ env.GITHUB_REF_NAME }}"
prerelease: true
draft: true
files: |
build-tools/cheqd-noded
release-docker-images:
name: "Publish Docker images for new version"
input: proto
buf_token: ${{ secrets.BUF_TOKEN }}

release-docker:
name: "Docker image"
needs: release-binary
runs-on: ubuntu-latest
env:
REGISTRY: ghcr.io
RELEASE_VERSION: ${{ inputs.RELEASE_VERSION }}

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Required to fetch version
persist-credentials: false

- name: Generate golang code
run: make proto-gen

- name: Build cheqd-cli Docker image 'cheqd-noded' as entrypoint and no build args
run: docker build --target base -t cheqd-cli -f docker/Dockerfile .
- uses: actions/setup-go@v3
with:
go-version-file: ./go.mod

- name: Build cheqd-node Docker image with 'node-start' as entrypoint and no build args
run: docker build --target node -t cheqd-node -f docker/Dockerfile .
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
id: buildx
with:
version: latest

- name: Login to Container registry
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Configure Docker image metadata
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/${{ github.repository}}
flavor: |
latest=auto
tags: |
type=semver,pattern={{version}},value=${{ needs.release-binary.outputs.RELEASE_VERSION }}
labels: |
org.opencontainers.image.vendor="Cheqd Foundation Limited"
org.opencontainers.image.created={{date 'dddd, MMMM Do YYYY, h:mm:ss a'}}
org.opencontainers.image.documentation="https://docs.cheqd.io/node"
- name: Push cheqd-node image
run: |
docker tag cheqd-node ghcr.io/${{ github.repository }}:${{ env.RELEASE_VERSION }}
docker tag cheqd-node ghcr.io/${{ github.repository }}:latest
docker push ghcr.io/${{ github.repository }}:${{ env.RELEASE_VERSION }}
docker push ghcr.io/${{ github.repository }}:latest
- name: Push cheqd-cli image
run: |
docker tag cheqd-cli ghcr.io/${{ github.repository_owner }}/cheqd-cli:${{ env.RELEASE_VERSION }}
docker tag cheqd-cli ghcr.io/${{ github.repository_owner }}/cheqd-cli:latest
docker push ghcr.io/${{ github.repository_owner }}/cheqd-cli:${{ env.RELEASE_VERSION }}
docker push ghcr.io/${{ github.repository_owner }}/cheqd-cli:latest
- name: Build and push image
uses: docker/build-push-action@v3
with:
context: .
file: docker/Dockerfile
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,4 +1,6 @@
### APP-SPECIFIC EXCLUSIONS ###
build/
dist/

# Tests
**/network-config
Expand Down

0 comments on commit ed9b26f

Please sign in to comment.