Skip to content

Telegram 6th of November Update: giveaways in channels. #145

Telegram 6th of November Update: giveaways in channels.

Telegram 6th of November Update: giveaways in channels. #145

Workflow file for this run

name: DeployToGitHubPages
env:
OUTPUT_DIR: Output
# Controls when the action will run
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Generate Website
run: dotnet run
- name: Deploy Website
if: success()
uses: crazy-max/[email protected]
with:
target_branch: gh-pages
build_dir: ${{ env.OUTPUT_DIR }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}