Files
version-increment/.github/workflows/test-and-release.yml
Phil Jay 3d5d532814 Avoid version 2020 warning
e.g.

```
🛑 The major version number is greater than 2020, but the scheme is not set to 'calver'
```
2023-10-19 00:25:49 +11:00

21 lines
314 B
YAML

---
name: Test and Release
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Get next version
uses: reecetech/version-increment@use_api
id: version
with:
scheme: calver
use_api: true