Skip to content

Commit

Permalink
add release workflow and CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jac18281828 committed Jun 18, 2024
1 parent 723fb35 commit 63dcd9e
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy Image CI Release
on:
push:
tags:
- "*"
concurrency:
group: "docker-image"
cancel-in-progress: true
env:
DOCKER_BUILDKIT: "1"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and Push
uses: docker/build-push-action@v3
with:
context: .
push: false
build-args: |
VERSION=latest
- name: GitHub Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
draft: false
prerelease: false
tag_name: ${{ github.ref_name }}
release_name: v${{ github.ref_name }}
body_path: CHANGELOG.md
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 1.0.0 (2023-09-21)

* mainnet_V0 release

# 1.1.0 (2024-04-01)

* SDUtilityPool

0 comments on commit 63dcd9e

Please sign in to comment.