Skip to content

Added DIRECT_TO_MX and HTML_SHORT_LINK_IMG_X #3

Added DIRECT_TO_MX and HTML_SHORT_LINK_IMG_X

Added DIRECT_TO_MX and HTML_SHORT_LINK_IMG_X #3

Workflow file for this run

name: Build and Release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
workflow_dispatch:
permissions:
contents: write
jobs:
build-and-release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Make build script executable
run: chmod +x ./build.sh
- name: Run build script
run: ./build.sh
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: spam-filter.toml
draft: false
prerelease: false
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}