Test auto-create tag on push to prod

pull/228/head
Lim Chee Aun 2023-09-08 14:45:17 +08:00
rodzic 10288411be
commit 5969ce7d06
1 zmienionych plików z 16 dodań i 0 usunięć

16
.github/workflows/prodtag.yml vendored 100644
Wyświetl plik

@ -0,0 +1,16 @@
name: Auto-create tag on every push to `production`
on:
push:
branches:
- production
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: production
- run: git tag -a "'{date +%d/%m/%Y} ({git rev-parse --short HEAD})'" $(git rev-parse HEAD)
- run: git push