This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
Maintainer on break #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | ||
on: | ||
push: | ||
branches: main | ||
workflow_dispatch: | ||
jobs: | ||
deploy: | ||
if: (github.ref == 'refs/heads/main') && (github.repository == 'ClimateTown/discord-bot') | ||
runs-on: ubuntu-latest | ||
needs: build | ||
permissions: | ||
id-token: write # to verify the deployment originates from an appropriate source | ||
steps: | ||
- run: echo "Hello world!" |