DEV Community

Cover image for THAT Conference: GitHub Actions for Fun & Profit
Bas Steins
Bas Steins

Posted on

THAT Conference: GitHub Actions for Fun & Profit

Top comments (6)

Collapse
 
taijidude profile image
taijidude

Great talk. After watching it i started to implement an action workflow for a personal python project of mine.

Collapse
 
bascodes profile image
Bas Steins

Thanks!
What kind of task did you automate?

Collapse
 
taijidude profile image
taijidude • Edited

Upscaling of Midjourney images to print them on t-shirts.

A bit messy at the moment, but i want to have a look:
github.com/taijidude/upscale

But im not done yet. Did struggle a bit with paths in git actions.

Used to run this in docker. But i want to migrate this to GitHub actions

Thread Thread
 
bascodes profile image
Bas Steins

That's really cool! Like the astronaut!

I just had a brief look at the action, but one thing: To commit from a GH Action, I often use the stefanzweifel/git-auto-commit-action@v5.0.1 action.

Thread Thread
 
taijidude profile image
taijidude

Thanks a lot. I got it running except for the commit. Will try your suggestion later.

Thread Thread
 
taijidude profile image
taijidude

It worked! Thanks a lot again. 😊