Skip to content

Add a note about the master/main-agnostig "puom" #343

Add a note about the master/main-agnostig "puom"

Add a note about the master/main-agnostig "puom" #343

Workflow file for this run

name: Tag
on:
push:
branches:
- main
jobs:
push-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
#!/usr/bin/env bash
set -euo pipefail
readonly tag_name="$(date -u +%Y%m%d%H%M%S)"
git config user.name 'github-actions'
git config user.email 'github-actions@github.com'
git tag "${tag_name}"
git push origin "${tag_name}"