7ca96550f695e6bc48761d1f19d13c030c2c4034
Bump ansi-regex from 5.0.0 to 5.0.1
7ca96550f6
·
2022-03-26 18:16:43 +08:00
101 Commits
GitHub Action - Setup xmake
Set up your GitHub Actions workflow with a specific version of xmake
Usage
See action.yml.
Example
Use latest version:
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: latest
Use specified version:
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: '2.5.3'
Use specified branch:
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: branch@master
Use semver:
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: '>=2.2.6 <=2.5.3'
Contributing
Prepare development environment
yarn install
Draft a new release
yarn release
git add .
yarn version
# for a minor version or patch of v1
git tag --delete v1
git tag v1
git push origin master
git push --tags --force
Description