Skip to content

CI: add publish to crates-io workflow #1

CI: add publish to crates-io workflow

CI: add publish to crates-io workflow #1

Workflow file for this run

name: Publish
on:
workflow_dispatch:
inputs:
sdk:
description: "Version of Playdate SDK, needed to validate crates."
default: latest
type: string
required: true
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:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: Install Playdate SDK
id: sdk
uses: pd-rs/get-playdate-sdk@main
with:
version: latest
- name: SDK ${{ steps.sdk.outputs.version }} installed
run: which pdc && pdc --version
- name: Publish
uses: katyo/publish-crates@v2
with:
# args: -v
dry-run: true
# ignore-unpublished-changes: true
check-repo: true
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}