Merge pull request #410 from boozook/rt-target-test #562
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: Publish | |
on: | |
pull_request_target: | |
branches: [main, master] | |
workflow_dispatch: | |
inputs: | |
sdk: | |
description: "Version of Playdate SDK, needed to validate crates." | |
default: latest | |
type: string | |
required: true | |
dry-run: | |
description: "Enable dry-run mode, actually skip execution `cargo publish`." | |
default: false | |
type: boolean | |
required: false | |
check-repo: | |
description: "Check repository consistency." | |
default: true | |
type: boolean | |
required: false | |
push: | |
branches: [main, master] | |
schedule: | |
- cron: "0 0 * * 1" | |
env: | |
CARGO_NET_RETRY: 10 | |
RUSTUP_MAX_RETRIES: 10 | |
CARGO_TERM_COLOR: always | |
CARGO_TERM_PROGRESS_WHEN: never | |
jobs: | |
crates-io: | |
name: crates.io | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Deps | |
uses: ./.github/actions/tools-deps | |
- name: Install Playdate SDK | |
id: sdk | |
uses: pd-rs/get-playdate-sdk@main | |
with: | |
version: ${{ github.event.inputs.sdk || 'latest' }} | |
- name: SDK ${{ steps.sdk.outputs.version }} installed | |
run: which pdc && pdc --version | |
- name: Publish | |
id: publisher | |
uses: katyo/publish-crates@v2 | |
with: | |
# From docs: `github.head_ref` is only available when the event that triggers | |
# a workflow run is either `pull_request` or `pull_request_target`. | |
dry-run: ${{ github.event.inputs.dry-run == 'true' || (github.head_ref && 'true') || 'false' }} | |
check-repo: ${{ (github.event.inputs && github.event.inputs.check-repo == 'true') || true }} | |
ignore-unpublished-changes: ${{ github.head_ref == 'false' }} | |
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
- name: Count published | |
id: counter | |
if: (github.event.inputs.dry-run == 'true' || (github.head_ref && 'true') || 'false') == 'false' | |
env: | |
CRATES: ${{ steps.publisher.outputs.published }} | |
run: | | |
echo "$CRATES" | |
CRATES_NUM=$(echo $CRATES | jq '. | length') | |
echo "value=$CRATES_NUM" >> "$GITHUB_OUTPUT" | |
LIST="${{ join(fromJSON(steps.publisher.outputs.published).*.name, ', ') }}" | |
echo "Published $CRATES_NUM crates: $LIST" | |
- name: Message | |
id: message | |
if: success() | |
env: | |
CRATES: ${{ steps.publisher.outputs.published }} | |
run: | | |
MESSAGE=$(echo $CRATES | jq -r 'if length == 1 then "Crate updated: \(.[0].name) v\(.[0].version)" else ("Crates updated:"), (to_entries[] | "\(.key + 1). \(.value.name): v\(.value.version)") end') | |
echo "$MESSAGE" | |
# Replace \n->\n is really nessessary! This encodes string to json string. | |
MESSAGE="\"${MESSAGE//$'\n'/'\n'}\"" | |
echo "encoded: $MESSAGE" | |
echo "value<<EOF" >> $GITHUB_OUTPUT | |
echo $MESSAGE >> $GITHUB_OUTPUT | |
echo "EOF" >> $GITHUB_OUTPUT | |
outputs: | |
published: ${{ steps.publisher.outputs.published }} | |
counter: ${{ steps.counter.outputs.value }} | |
message: ${{ steps.message.outputs.value }} | |
post: | |
needs: crates-io | |
if: join(fromJSON(needs.crates-io.outputs.published).*.name, '-') && (github.event.inputs.dry-run == 'true' || (github.head_ref && 'true') || 'false') == 'false' | |
uses: ./.github/workflows/post.yml | |
secrets: inherit | |
with: | |
message: ${{ needs.crates-io.outputs.message }} |