-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #339 from rwaffen/dev_to
Add Blog post about dev.to and add action to automatically x-post there
- Loading branch information
Showing
3 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
name: Post to dev.to | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
post_to_dev_to: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Publish articles on dev.to | ||
uses: sinedied/publish-devto@v2 | ||
with: | ||
# Your dev.to personal API key to publish and update articles. | ||
# See https://docs.dev.to/api/#section/Authentication/api_key | ||
devto_key: ${{ secrets.DEV_TO_TOKEN }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# (Optional) The files to publish. Default is "posts/**/*.md" | ||
# TODO: rwaffen - lets test this first if and how this will release postings | ||
files: 'posts/**/2024-*.md' | ||
# (Optional) The git branch to use. Default is 'main'. | ||
branch: master | ||
# (Optional) Do not make actual changes on dev.to. | ||
# TODO: rwaffen - lets test this first | ||
dry_run: true |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
layout: post | ||
title: Vox Pupuli is now also on dev.to | ||
date: 2024-02-16 | ||
github_username: rwaffen | ||
twitter_username: rwaffen | ||
--- | ||
|
||
As of today, we've officially joined dev.to, a leading platform for tech and development blogging. In addition to our established blog on voxpupuli.org, we'll be expanding our reach to include dev.to. Stay tuned for upcoming posts, including insights into the Project Management Committee (PMC) election and the significance of being part of the PMC. These initial posts mark the beginning of our journey on both platforms, and we're excited to see where it takes us. |