Skip to content

Commit

Permalink
chore: fixes release process
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Jaeger committed Sep 1, 2024
1 parent 41bfcd4 commit bd476c4
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,27 +62,16 @@ jobs:
tar czvf ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
fi
cd -
if: |
matrix.toolchain == 'stable' &&
( startsWith( github.ref, 'refs/tags/v' ) ||
github.ref == 'refs/tags/test-release' )
- name: Publish release artifacts
uses: actions/upload-artifact@v4
with:
name: secret-service-${{ matrix.platform.os_name }}
path: "secret-service-*"
if: matrix.toolchain == 'stable' && github.ref == 'refs/tags/test-release'
- name: Generate SHA-256
run: shasum -a 256 ${{ matrix.platform.name }}
if: |
matrix.toolchain == 'stable' &&
matrix.platform.os == 'macOS-latest' &&
( startsWith( github.ref, 'refs/tags/v' ) ||
github.ref == 'refs/tags/test-release' )
- name: Publish GitHub release
uses: softprops/action-gh-release@v2
with:
draft: true
files: "secret-service-*"
body_path: CHANGELOG.adoc
if: matrix.toolchain == 'stable' && startsWith( github.ref, 'refs/tags/v' )

0 comments on commit bd476c4

Please sign in to comment.