Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

TODO Trigger on version tags

We can create a workflow that will only run when a tag was pushed out or when a tag staring with the letter v was pushed out.

on:
  push:
    tags:
      - 'v*'
name: Git tags

on:
  push:
    tags:
      - 'v*'
  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest
    name: Build
    steps:
      - uses: actions/checkout@v6

      - name: git log
        run: |
          git log

      - name: show git tags
        run: |
          git tag
name: CI

on:
  push:
  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest
    name: Build
    steps:
      - uses: actions/checkout@v6

      - name: git log
        run: |
          git log

      - name: show git tags
        run: |
          git tag

repository