mirror of
https://github.com/Sarsoo/csbindgen.git
synced 2024-12-23 06:56:27 +00:00
64 lines
2.0 KiB
YAML
64 lines
2.0 KiB
YAML
name: Build-Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: "tag: git tag you want create. (sample 1.0.0)"
|
|
required: true
|
|
|
|
env:
|
|
GIT_TAG: ${{ github.event.inputs.tag }}
|
|
|
|
jobs:
|
|
build-and-push-rust:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: cargo build --verbose
|
|
- run: cargo test update_package_version -- ${{ inputs.tag }} --nocapture
|
|
- run: |
|
|
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
git config --local user.name "github-actions[bot]"
|
|
git commit -m "Update cargo.toml version to ${{ env.GIT_TAG }}" -a
|
|
- run: cargo publish --manifest-path csbindgen/Cargo.toml
|
|
env:
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
- run: git tag ${{ env.GIT_TAG }}
|
|
- name: Push changes
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: ${{ github.ref }}
|
|
tags: true
|
|
|
|
build-dotnet:
|
|
needs: [build-and-push-rust]
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main
|
|
with:
|
|
dotnet-version: 7.0.x
|
|
# pack nuget
|
|
- run: dotnet build -c Release -p:Version=${{ inputs.tag }}
|
|
- run: dotnet pack -c Release --no-build -p:Version=${{ inputs.tag }} -o ./publish
|
|
- run: dotnet nuget push "./publish/*.nupkg" -s https://www.nuget.org/api/v2/package -k ${{ secrets.NUGET_KEY }}
|
|
|
|
create-release:
|
|
needs: [build-dotnet, build-and-push-rust]
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
# Create Releases
|
|
- uses: actions/create-release@v1
|
|
id: create_release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ env.GIT_TAG }}
|
|
release_name: Ver.${{ env.GIT_TAG }}
|
|
draft: true
|
|
prerelease: false |