Skip to content

Commit

Permalink
update: avoid tar error
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark24Code committed Jun 27, 2024
1 parent 290736e commit 7d42f99
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/osx-amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: app-${{ env.PKG_DATE }}-${{env.PLATFORM}}-${{env.ARCHITECTURES}}.tar.gz
path: build/app.tar.gz
path: app.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/osx-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: app-${{ env.PKG_DATE }}-${{env.PLATFORM}}-${{env.ARCHITECTURES}}.tar.gz
path: build/app.tar.gz
path: app.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: app-${{ env.PKG_DATE }}-${{env.PLATFORM}}-${{env.ARCHITECTURES}}.tar.gz
path: build/app.tar.gz
path: app.tar.gz
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: app-${{ env.PKG_DATE }}-${{env.PLATFORM}}-${{env.ARCHITECTURES}}.tar.gz
path: build/app.tar.gz
path: app.tar.gz
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ task :build => [:"mruby:init", :build_merge, :build_to_c, :"mruby:build_config",
sh "cp #{MRUBY_BIN}/mruby #{BUILD_DIR}/portable/"
sh "mv #{BUILD_DIR}/main.rb #{BUILD_DIR}/portable/"
sh "rm #{BUILD_DIR}/*.h; rm #{BUILD_DIR}/*.c"
sh "tar -czvf --exclude=app.tar.gz #{BUILD_DIR}/app.tar.gz #{BUILD_DIR}"
sh "tar -czvf app.tar.gz #{BUILD_DIR}"
end


Expand Down

0 comments on commit 7d42f99

Please sign in to comment.