The #farmOS monthly community call is today at 2pm Eastern. All are w… #86
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: Publish | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Echo message | |
run: echo ${{ github.event.head_commit.message }} | |
- name: Mastodon | |
if: github.repository == 'farmOS/farmOS-microblog' | |
uses: cbrgm/mastodon-github-action@6cffb7d449201bf36a60589de7a76e18ee226043 | |
with: | |
message: ${{ github.event.head_commit.message }} | |
env: | |
MASTODON_URL: ${{ secrets.MASTODON_URL }} | |
MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }} |