this post was submitted on 28 Mar 2025
2082 points (99.2% liked)

Technology

68244 readers
3942 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] neclimdul@lemmy.world 8 points 5 days ago (1 children)

Every other ci in existence you just write a command. Then if it doesn't work you run the command on your machine and fix it.

Actions are "magic" which means you have to fake the ci runner with tools and reverse engineer the action to run local debugging and if it failed you might not even fully know what was running with digging into the actions source.

GitHub provides you the tools and their "easy" until they aren't.

It's very Microsoft though. It feels like trying to write a Windows app and trying to get your random Net environment definition to line everything up and compile in VS then hoping the same thing happens when you deploy.

[โ€“] trevor@lemmy.blahaj.zone 7 points 5 days ago

You can just write bash scripts in your actions if you want them to be easily replicatable on your local machine, so you don't really lose anything with that system.