this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Test auto-create tag on push to prod

+16
+16
.github/workflows/prodtag.yml
··· 1 + name: Auto-create tag on every push to `production` 2 + 3 + on: 4 + push: 5 + branches: 6 + - production 7 + 8 + jobs: 9 + tag: 10 + runs-on: ubuntu-latest 11 + steps: 12 + - uses: actions/checkout@v4 13 + with: 14 + ref: production 15 + - run: git tag -a "'{date +%d/%m/%Y} ({git rev-parse --short HEAD})'" $(git rev-parse HEAD) 16 + - run: git push