Change label #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
# Modelled on https://github.com/OpenGreekAndLatin/First1KGreek/blob/master/.github/workflows/ci.yml | |
on: | |
push: | |
# Dispatch when pushing to default branch; currently `main` | |
branches: | |
- main | |
# Dispatch on pull requests | |
pull_request: | |
jobs: | |
create_release: | |
name: Create release | |
runs-on: ubuntu-latest | |
env: | |
MAJOR_VERSION: 0 | |
MINOR_VERSION: 0 | |
steps: | |
- name: Create release | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: ${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}.${{ github.run_id }} |