Skip to content

Commit

Permalink
Check that cleanup still works
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel- committed Sep 26, 2024
1 parent 1a31bb0 commit 7582bb5
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 16 deletions.
40 changes: 26 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "Build Ark Release"
on:
push:
branches:
- main
- feature/release-cleanup
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/ark/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ark"
version = "0.1.139"
version = "0.1.140"
description = """
Ark, an R Kernel.
"""
Expand Down

0 comments on commit 7582bb5

Please sign in to comment.