From 088ab3b45911fbf804c8af175a99b22384a285f8 Mon Sep 17 00:00:00 2001 From: Suhas Thalanki <54014218+thesuhas@users.noreply.github.com> Date: Wed, 2 Oct 2024 18:34:01 -0400 Subject: [PATCH] Automated release (#208) * added manual code to create a release * added github config * added creation of upstream branch * added gh token * added branch matching for publish * updated branch condition * changed if --- .github/workflows/publish.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c0f0a47..57b7071 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ env: jobs: publish: runs-on: ubuntu-latest - if: github.event.pull_request.merge == true && startsWith(github.event.pull_request.head.ref, 'release-v') + if: startsWith(github.event.pull_request.head.ref, 'release-v') steps: - name: cargo login run: cargo login ${{ secrets.ORCA_API_TOKEN }} diff --git a/Cargo.toml b/Cargo.toml index ef2ea74..4dd8d8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orca-wasm" -version = "0.1.2" +version = "0.1.1" edition = "2021" authors = ["Suhas Thalanki", "Alex Bai", "Elizabeth Gilbert"] description = "A lightweight WebAssembly Transformation Library for the Component Model"