Toit pkg publish
ActionsTags
(1)GitHub action for publishing a package
To set up publishing for a package repository add the following to ./github/workflows/publish.yml
:
name: Publish package
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-*'
jobs:
create-release:
name: Create new release
runs-on: ubuntu-latest
steps:
- name: Publish
uses: toitlang/[email protected]
Toit pkg publish is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.