Publish release #83
Workflow file for this run
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
# Publish new release of tfhe-rs on various platform. | |
name: Publish release | |
on: | |
workflow_dispatch: | |
inputs: | |
dry_run: | |
description: "Dry-run" | |
type: boolean | |
default: true | |
push_to_crates: | |
description: "Push to crate" | |
type: boolean | |
default: true | |
push_web_package: | |
description: "Push web js package" | |
type: boolean | |
default: true | |
push_node_package: | |
description: "Push node js package" | |
type: boolean | |
default: true | |
npm_latest_tag: | |
description: "Set NPM tag as latest" | |
type: boolean | |
default: false | |
env: | |
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
NPM_TAG: "" | |
jobs: | |
publish_release: | |
name: Publish Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
with: | |
fetch-depth: 0 | |
- name: Create NPM version tag | |
run: | | |
echo "NPM_TAG=$(sed -n -e '1,/^version/p' tfhe/Cargo.toml | grep '^version[[:space:]]*=' | cut -d '=' -f 2 | tr -d ' ')" >> "${GITHUB_ENV}" | |
- name: Publish crate.io package | |
if: ${{ inputs.push_to_crates }} | |
env: | |
CRATES_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
DRY_RUN: ${{ inputs.dry_run && '--dry-run' || '' }} | |
run: | | |
cargo publish -p tfhe --token ${{ env.CRATES_TOKEN }} ${{ env.DRY_RUN }} | |
- name: Build web package | |
if: ${{ inputs.push_web_package }} | |
run: | | |
make build_web_js_api_parallel | |
- name: Publish web package | |
if: ${{ inputs.push_web_package }} | |
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: tfhe/pkg/package.json | |
dry-run: ${{ inputs.dry_run }} | |
tag: ${{ env.NPM_TAG }} | |
- name: Publish web package as latest | |
if: ${{ inputs.push_web_package && inputs.npm_latest_tag }} | |
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: tfhe/pkg/package.json | |
dry-run: ${{ inputs.dry_run }} | |
- name: Build Node package | |
if: ${{ inputs.push_node_package }} | |
run: | | |
rm -rf tfhe/pkg | |
make build_node_js_api | |
sed -i 's/"tfhe"/"node-tfhe"/g' tfhe/pkg/package.json | |
- name: Publish Node package | |
if: ${{ inputs.push_node_package }} | |
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: tfhe/pkg/package.json | |
dry-run: ${{ inputs.dry_run }} | |
tag: ${{ env.NPM_TAG }} | |
- name: Publish Node package as latest | |
if: ${{ inputs.push_node_package && inputs.npm_latest_tag }} | |
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: tfhe/pkg/package.json | |
dry-run: ${{ inputs.dry_run }} | |
- name: Slack Notification | |
if: ${{ failure() }} | |
continue-on-error: true | |
uses: rtCamp/action-slack-notify@4e5fb42d249be6a45a298f3c9543b111b02f7907 | |
env: | |
SLACK_COLOR: ${{ job.status }} | |
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }} | |
SLACK_ICON: https://pbs.twimg.com/profile_images/1274014582265298945/OjBKP9kn_400x400.png | |
SLACK_MESSAGE: "tfhe release failed: (${{ env.ACTION_RUN_URL }})" | |
SLACK_USERNAME: ${{ secrets.BOT_USERNAME }} | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |