Skip to content

Commit

Permalink
🔄 synced local '.github/' with remote 'repo-template/.github/'
Browse files Browse the repository at this point in the history
  • Loading branch information
qbox-duck[bot] committed Dec 4, 2023
1 parent 5ae6eb4 commit e84dbe9
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/discord-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
release:
types: [published]

jobs:
github-releases-to-discord:
name: Discord Releases Changelog
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4.1.1
- name: Github Releases To Discord
uses: SethCohen/github-releases-to-discord@v1.13.1
with:
webhook_url: ${{ secrets.WEBHOOK_URL }}
color: "15852866"
username: ${{ github.event.repository.name }}
avatar_url: "https://i.imgur.com/Eh1yiLI.png"
footer_timestamp: true
13 changes: 10 additions & 3 deletions .github/workflows/release-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,23 @@ jobs:

- name: Install ZIP
run: sudo apt install zip

- name: Bundle files
run: |
rm -rf ./.github ./.vscode ./.git
zip -r ./${{ github.event.repository.name }}.zip ./
- name: Get App Token
uses: actions/create-github-app-token@v1.6.1
id: generate_token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}

- name: Create Release
uses: 'marvinpinto/action-automatic-releases@latest'
with:
title: ${{ github.ref_name }}
repo_token: '${{ secrets.GITHUB_TOKEN }}'
repo_token: '${{ steps.generate_token.outputs.token }}'
prerelease: false
files: ${{ github.event.repository.name }}.zip

0 comments on commit e84dbe9

Please sign in to comment.