fix(version): rollback version in file #53
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
- pre-* | |
jobs: | |
build: | |
name: export pdf And bump version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Generate PDF from presentation | |
run: | | |
make export-pdf | |
- name: Semantic Release | |
uses: cycjimmy/semantic-release-action@v2 | |
with: | |
semantic_version: 19.0.2 | |
extra_plugins: | | |
@semantic-release/[email protected] | |
@semantic-release/[email protected] | |
@semantic-release/[email protected] | |
@semantic-release/[email protected] | |
@semantic-release/[email protected] | |
@semantic-release/[email protected] | |
env: | |
GH_TOKEN: ${{ secrets.CI_TOKEN }} | |
- name: store output next version | |
id: next_version | |
run: | | |
echo "NEXT_VERSION=`git describe --tags --abbrev=0`" >> $GITHUB_OUTPUT | |
- name: read next version | |
run: | | |
echo ${{ steps.next_version.outputs.NEXT_VERSION }} |