Skip to content

Commit

Permalink
Bump to v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kendryte747 committed Oct 11, 2024
1 parent 40ef7af commit b32e4bd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
url: https://pypi.org/p/k230_flash
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v4

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ jobs:
- name: Compress artifacts
run: |
cd ${{ github.workspace }}/dist/bin
zip -r K230FlahsCli-Windows-${{ env.REVISION }}.zip *
zip -r k230flash_cli-Windows-${{ env.REVISION }}.zip *
- name: Upload k230_flash-cli Build Artifact
uses: actions/upload-artifact@v4
with:
name: "K230FlahsCli-Windows-${{ env.REVISION }}"
path: ${{ github.workspace }}/dist/bin/K230FlahsCli-Windows-${{ env.REVISION }}.zip
name: "k230_flash_cli-Windows-${{ env.REVISION }}"
path: ${{ github.workspace }}/dist/bin/k230flash_cli-Windows-${{ env.REVISION }}.zip
if-no-files-found: error

build-cli-liunx:
Expand Down Expand Up @@ -89,13 +89,13 @@ jobs:
- name: Compress artifacts
run: |
cd ${{ github.workspace }}/build/dist
zip -r K230FlahsCli-Linux-${{ env.REVISION }}.zip *
zip -r k230flash_cli-Linux-${{ env.REVISION }}.zip *
- name: Upload k230_flash-cli Build Artifact
uses: actions/upload-artifact@v4
with:
name: "K230FlahsCli-Linux-${{ env.REVISION }}"
path: ${{ github.workspace }}/build/dist/K230FlahsCli-Linux-${{ env.REVISION }}.zip
name: "k230_flash_cli-Linux-${{ env.REVISION }}"
path: ${{ github.workspace }}/build/dist/k230flash_cli-Linux-${{ env.REVISION }}.zip
if-no-files-found: error

release:
Expand Down
2 changes: 1 addition & 1 deletion src/kburn/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ endfunction()

set(K230_FLASH_VERSION_MAJOR 0)
set(K230_FLASH_VERSION_MINOR 0)
set(K230_FLASH_VERSION_PATCH 4)
set(K230_FLASH_VERSION_PATCH 5)

set(K230_FLASH_VERSION_STRING ${K230_FLASH_VERSION_MAJOR}.${K230_FLASH_VERSION_MINOR}.${K230_FLASH_VERSION_PATCH})
message(STATUS "K230_FLASH_VERSION_STRING = ${K230_FLASH_VERSION_STRING}")
Expand Down

0 comments on commit b32e4bd

Please sign in to comment.