Skip to content

Commit

Permalink
Add debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ostenbom committed Nov 9, 2023
1 parent 90a988f commit bd80616
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: Create Release

on:
push:
branches:
- main
paths:
- "linkup-cli/Cargo.toml"
pull_request:
# push:
# branches:
# - main
# - oliver/test-release
# paths:
# - "linkup-cli/Cargo.toml"

jobs:
build:
Expand Down Expand Up @@ -108,11 +110,15 @@ jobs:
- name: Set SHA Outputs
if: matrix.target == 'x86_64-apple-darwin'
run: |
echo "::set-output name=mac_x86_sha::$(cat $CHECKSUM_PATH)"
echo "::set-output name=release_version::${{ env.RELEASE_VERSION }}}}"
echo "$(cat $CHECKSUM_PATH)"
echo ${{ env.RELEASE_VERSION }}
echo "mac_x86_sha=$(cat $CHECKSUM_PATH)" >> $GITHUB_OUTPUT
echo "release_version=${{ env.RELEASE_VERSION }}" >> $GITHUB_OUTPUT
- name: Set SHA Outputs
if: matrix.target == 'aarch64-apple-darwin'
run: echo "::set-output name=mac_arm_sha::$(cat $CHECKSUM_PATH)"
run: |
echo "$(cat $CHECKSUM_PATH)"
echo "mac_arm_sha=$(cat $CHECKSUM_PATH)" >> $GITHUB_OUTPUT
- name: Release
uses: softprops/action-gh-release@v1
Expand All @@ -127,7 +133,6 @@ jobs:
update_homebrew_formula:
needs: [build]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout Homebrew Tap Repository
run: git clone https://github.com/mentimeter/homebrew-mentimeter.git
Expand Down

0 comments on commit bd80616

Please sign in to comment.