Skip to content

start prod deploys from scratch #6

start prod deploys from scratch

start prod deploys from scratch #6

Workflow file for this run

name: Create a release
on:
push:
branches:
- main
workflow_dispatch:
jobs:
release:
environment: production
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d %H:%M:%S')"
- name: Push to the production tag
run: |
git tag -a production -m "Release ${{ steps.date.outputs.date }}"
git push origin production