Skip to content

Commit

Permalink
Ready for v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dhzdhd committed Nov 28, 2022
1 parent 2b0e24d commit 3601afe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:

release:
runs-on: ubuntu-latest
needs: [build-linux, build-android, build-windows, build-macos]
needs: [build-linux, build-android, build-windows] # build-macos
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -123,7 +123,7 @@ jobs:
path: exec/

- name: Zip Linux and Windows programs
run: 7z a -tZip ExCode-linux.zip exec/lin && 7z a -tZip ExCode-win.zip exec/win && 7z a -tZip ExCode-mac.zip exec/mac
run: 7z a -tZip ExCode-linux.zip exec/lin && 7z a -tZip ExCode-win.zip exec/win # && 7z a -tZip ExCode-mac.zip exec/mac

- name: Display structure of downloaded files
run: tree exec/
Expand All @@ -133,15 +133,15 @@ jobs:
# if: startsWith(github.ref, 'refs/tags/')
with:
name: ExCode
tag_name: v0.3.0
tag_name: v0.4.0
prerelease: true
generate_release_notes: true
files: |
exec/android/bundle/release/app-release.aab
exec/android/flutter-apk/*
ExCode-linux.zip
ExCode-win.zip
ExCode-mac.zip
# ExCode-mac.zip

body_path: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A code execution editor which supports multiple languages.

publish_to: 'none'

version: 0.3.0
version: 0.4.0

environment:
sdk: ">=2.17.0 <3.0.0"
Expand Down

0 comments on commit 3601afe

Please sign in to comment.