This repository was archived by the owner on Mar 25, 2025. It is now read-only.
Create release #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create release | |
on: | |
workflow_run: | |
workflows: [Build share_data binaries] | |
types: [completed] | |
permissions: | |
contents: write | |
jobs: | |
create-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Download share_data_ubuntu_noble | |
uses: actions/download-artifact@v4 | |
with: | |
name: share_data_ubuntu_noble | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
run-id: ${{ github.event.workflow_run.id }} | |
- name: Download share_data_macos_ventura | |
uses: actions/download-artifact@v4 | |
with: | |
name: share_data_macos_ventura | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
run-id: ${{ github.event.workflow_run.id }} | |
- name: Download share_data_macos_sonoma_arm64 | |
uses: actions/download-artifact@v4 | |
with: | |
name: share_data_macos_sonoma_arm64 | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
run-id: ${{ github.event.workflow_run.id }} | |
- name: Get current timestamp for tag | |
id: timestamp | |
run: echo "tag_name=share_data_$(date +'%Y%m%d_%H%M%S')" >> $GITHUB_ENV | |
- name: Create Git Tag | |
run: | | |
git config user.name "github-actions" | |
git config user.email "[email protected]" | |
git tag ${{ env.tag_name }} | |
git push origin ${{ env.tag_name }} | |
env: | |
tag_name: ${{ env.tag_name }} | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ env.tag_name }} | |
body: | | |
- share_data_ubuntu_noble | |
- share_data_macos_ventura | |
- share_data_macos_sonoma_arm64 | |
release_name: "Release ${{ env.tag_name }}" | |
draft: false | |
prerelease: false | |
- name: Upload Release Assets | |
run: | | |
gh release upload ${{ env.tag_name }} \ | |
share_data_ubuntu_noble \ | |
share_data_macos_ventura \ | |
share_data_macos_sonoma_arm64 \ | |
mpc_demo_infra/client_cli/.env.client_cli \ | |
mpc_demo_infra/client_cli/binary/share-data.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |