Skip to content

chore: change noti email #18

chore: change noti email

chore: change noti email #18

Workflow file for this run

name: Create release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
name: Release pushed tag
runs-on: ubuntu-22.04
steps:
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
--repo="$GITHUB_REPOSITORY" \
--title="${tag#v}" \
--generate-notes
- name: New release notification
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
POSTMARK_SERVER_TOKEN: ${{ secrets.POSTMARK_SERVER_TOKEN }}
APP_NAME: Fullstack Template
VERSION: ${{ github.ref_name }}
RECEIVE_EMAIL: [email protected]
REPOSITORY: https://github.com/${{ github.repository }}
LINK: https://github.com/${{ github.repository }}/releases/tag/${{ github.ref_name }}
uses: docker://lesanpi/email-deploy:v1.1.1