update action names #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release on Windows x86_64 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Build | |
run: | | |
.\build_win.bat | |
- name: Archive built module | |
uses: actions/upload-artifact@v4 | |
if: success() | |
with: | |
name: hdf5lib_win_x86_64 | |
path: .\hdf5lib |