Skip to content

Commit 3601afe

Browse files
committed
Ready for v0.4.0
1 parent 2b0e24d commit 3601afe

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112

113113
release:
114114
runs-on: ubuntu-latest
115-
needs: [build-linux, build-android, build-windows, build-macos]
115+
needs: [build-linux, build-android, build-windows] # build-macos
116116
steps:
117117
- name: Checkout
118118
uses: actions/checkout@v3
@@ -123,7 +123,7 @@ jobs:
123123
path: exec/
124124

125125
- name: Zip Linux and Windows programs
126-
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
126+
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
127127

128128
- name: Display structure of downloaded files
129129
run: tree exec/
@@ -133,15 +133,15 @@ jobs:
133133
# if: startsWith(github.ref, 'refs/tags/')
134134
with:
135135
name: ExCode
136-
tag_name: v0.3.0
136+
tag_name: v0.4.0
137137
prerelease: true
138138
generate_release_notes: true
139139
files: |
140140
exec/android/bundle/release/app-release.aab
141141
exec/android/flutter-apk/*
142142
ExCode-linux.zip
143143
ExCode-win.zip
144-
ExCode-mac.zip
144+
# ExCode-mac.zip
145145

146146
body_path: CHANGELOG.md
147147
token: ${{ secrets.GITHUB_TOKEN }}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: A code execution editor which supports multiple languages.
33

44
publish_to: 'none'
55

6-
version: 0.3.0
6+
version: 0.4.0
77

88
environment:
99
sdk: ">=2.17.0 <3.0.0"

0 commit comments

Comments
 (0)