Commit 30e7cc11 authored by Michael Droettboom's avatar Michael Droettboom

Fix release packaging

parent 276aff3e
...@@ -106,7 +106,10 @@ jobs: ...@@ -106,7 +106,10 @@ jobs:
- run: - run:
name: Deploy Github Releases name: Deploy Github Releases
command: | command: |
ghr -t "${GITHUB_TOKEN}" -u "${CIRCLE_PROJECT_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}" -c "${CIRCLE_SHA1}" -delete "${CIRCLE_TAG}" ./build/ pushd build
tar cjf ../pyodide-build-${CIRCLE_TAG}.tar.bz2 *
popd
ghr -t "${GITHUB_TOKEN}" -u "${CIRCLE_PROJECT_USERNAME}" -r "${CIRCLE_PROJECT_REPONAME}" -c "${CIRCLE_SHA1}" -delete "${CIRCLE_TAG}" ./pyodide-build-${CIRCLE_TAG}.tag.bz2
workflows: workflows:
version: 2 version: 2
...@@ -140,4 +143,4 @@ workflows: ...@@ -140,4 +143,4 @@ workflows:
branches: branches:
ignore: /.*/ ignore: /.*/
tags: tags:
only: /^v\d+\.\d+\.\d+$/ only: /^\d+\.\d+\.\d+$/
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment