diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ba30d5bd..f7ae7440f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,7 @@ name: "Build Ark Release" on: push: branches: - - main + - feature/release-cleanup workflow_dispatch: jobs: @@ -58,27 +58,39 @@ jobs: # Build ARK for macOS. Both arm64 (Apple Silicon) and x64 (Intel) hosts. build_macos: name: Build macOS - uses: ./.github/workflows/release-macos.yml + runs-on: ubuntu-latest + # uses: ./.github/workflows/release-macos.yml + steps: + - name: Dummy step + run: echo "" needs: [do_release, get_version] - secrets: inherit - with: - version: ${{ needs.get_version.outputs.ARK_VERSION }} + # secrets: inherit + # with: + # version: ${{ needs.get_version.outputs.ARK_VERSION }} build_windows: name: Build Windows - uses: ./.github/workflows/release-windows.yml + runs-on: ubuntu-latest + # uses: ./.github/workflows/release-windows.yml + steps: + - name: Dummy step + run: echo "" needs: [do_release, get_version] - secrets: inherit - with: - version: ${{ needs.get_version.outputs.ARK_VERSION }} + # secrets: inherit + # with: + # version: ${{ needs.get_version.outputs.ARK_VERSION }} build_linux: name: "Build Linux" - uses: ./.github/workflows/release-linux.yml + runs-on: ubuntu-latest + # uses: ./.github/workflows/release-linux.yml + steps: + - name: Dummy step + run: echo "" needs: [do_release, get_version] - secrets: inherit - with: - version: ${{ needs.get_version.outputs.ARK_VERSION }} + # secrets: inherit + # with: + # version: ${{ needs.get_version.outputs.ARK_VERSION }} create_release: name: Create Release @@ -191,7 +203,7 @@ jobs: tag: ${{ needs.get_version.outputs.ARK_VERSION }} - name: Delete failed release if any - if: steps.check-tag.outputs.exists == 'true' + if: steps.check_tag.outputs.exists == 'true' env: GH_TOKEN: ${{ github.token }} run: | diff --git a/Cargo.lock b/Cargo.lock index 99366d76a..9d1e16706 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -278,7 +278,7 @@ checksum = "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1" [[package]] name = "ark" -version = "0.1.139" +version = "0.1.140" dependencies = [ "actix-web", "amalthea", diff --git a/crates/ark/Cargo.toml b/crates/ark/Cargo.toml index 6d512c7f0..e42870e6c 100644 --- a/crates/ark/Cargo.toml +++ b/crates/ark/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ark" -version = "0.1.139" +version = "0.1.140" description = """ Ark, an R Kernel. """