Skip to content

Commit

Permalink
fix merge code error
Browse files Browse the repository at this point in the history
  • Loading branch information
jingjingxyk committed Dec 18, 2024
1 parent c8340da commit 895a059
Show file tree
Hide file tree
Showing 9 changed files with 328 additions and 163 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/artifact-hash.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: artifact-hash

on:
workflow_dispatch:
inputs:
version:
required: true
description: "发版 版本号 tag"
default: 'v5.1.6.0'
type: string

jobs:
generate-artifact-hash:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Show Release File Hash
run: |
bash sapi/scripts/generate-artifact-hash.sh --version ${{ inputs.version }}
- name: production artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.version }}-sha256sum
retention-days: 90
path: |
${{ inputs.version }}-sha256sum
Loading

0 comments on commit 895a059

Please sign in to comment.