mirror of
https://github.com/imjasonh/krust
synced 2026-07-17 22:44:56 +00:00
The previous commit added vendor/oci-distribution as a git submodule pointer, which caused CI to fail because the files weren't actually present. This commit removes the submodule and adds the actual files directly.
13 lines
286 B
YAML
13 lines
286 B
YAML
name: release
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
jobs:
|
|
publish:
|
|
name: publish to crates.io
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.1.2
|
|
- name: publish oci-distribution to crates.io
|
|
run: cargo publish --token ${{ secrets.CargoToken }}
|