Fix disabling the auto version register option #61
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: "Example 1: Basic usage" | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- "develop" | |
- "main" | |
jobs: | |
example-1: | |
runs-on: ubuntu-latest | |
name: Example 1 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- id: latch | |
name: Install Latch | |
uses: ./ | |
- run: echo latch version ${{ steps.latch.outputs.latch-version }} | |
name: Print latch version | |
shell: bash |