This is an automated email from the ASF dual-hosted git repository.
junchao pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/incubator-resilientdb-resvault.git
The following commit(s) were added to refs/heads/main by this push:
new 8d224c6 rm workflows
8d224c6 is described below
commit 8d224c6a8a558bf6debda82e9f3bf74f0e7348d0
Author: junechen <[email protected]>
AuthorDate: Tue Feb 11 12:20:22 2025 +0800
rm workflows
---
.github/workflows/release.yml | 46 -------------------------------------------
1 file changed, 46 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
deleted file mode 100644
index f362af6..0000000
--- a/.github/workflows/release.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-name: Release CI
-
-on:
- push:
- branches:
- - main
-
-jobs:
- build:
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
-
- - name: Setup Node.js
- uses: actions/setup-node@v3
- with:
- node-version: 14 # Specify the Node.js version you want to use
-
- - name: Install dependencies
- run: npm install
-
- - name: Build and test
- run: npm run build
-
- - name: Create Temporary Tag
- run: |
- TAG_NAME="Release-$(date +'%Y%m%d%H%M%S')"
- echo "::set-output name=tag::$TAG_NAME"
- id: create_tag
-
- - name: Create ZIP Archive
- run: |
- cd build
- zip -r build.zip .
- shell: bash
-
- - name: Create Release
- id: create_release
- uses: softprops/action-gh-release@v1
- with:
- files: ./build/build.zip
- tag_name: ${{ steps.create_tag.outputs.tag }}
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}