Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit 3dcdcd1

Browse files
committed
Test release action
1 parent 107b6d1 commit 3dcdcd1

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: release wheel
2+
3+
defaults:
4+
run:
5+
shell: bash -leo pipefail {0}
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
9+
cancel-in-progress: true
10+
11+
on:
12+
pull_request:
13+
branches:
14+
- main
15+
16+
jobs:
17+
release-wheel:
18+
runs-on: 'ubuntu-latest'
19+
steps:
20+
- name: Download artifact
21+
uses: actions/download-artifact@v4
22+
with:
23+
name: build_artifact_finch_mlir
24+
path: dist
25+
github-token: ${{ secrets.GITHUB_TOKEN }}
26+
repository: nullplay/Finch-mlir
27+
run-id: 11392793236
28+
29+
- name: Release current commit
30+
uses: ncipollo/release-action@v1.12.0
31+
with:
32+
artifacts: "dist/*.whl"
33+
token: "${{ secrets.GITHUB_TOKEN }}"
34+
tag: "latest"
35+
name: "latest"
36+
removeArtifacts: false
37+
allowUpdates: true
38+
replacesArtifacts: true
39+
makeLatest: true
40+
artifactErrorsFailBuild: true

0 commit comments

Comments
 (0)