Automate EVERYTHING with GitHub Actions!

Поделиться
HTML-код
  • Опубликовано: 1 окт 2024
  • Are you wondering what can GitHub Actions do, or how to use GitHub Actions?
    GitHub Actions is now the most popular Build Platform on GitHub. But it is also much more than a CI system: it is a very powerful automation engine.
    Let's take a look at this GitHub Actions Showcase, to learn how we can do CI with Actions, and how we can automate operations on our GitHub projects. Just stop doing it manually, Automate EVERYTHING with GitHub Actions!
    🆘 NEED HELP? 🆘
    Book a 1:1 Consultation with CoderDave: geni.us/cdconsult
    We can talk about GitHub, Azure DevOps, or any other DevOps tool or project you need help with!
    🙏🏻SUPPORT THE CHANNEL🙏🏻
    Buy me a coffee: www.buymeacoff...
    PayPal me donation: paypal.me/dabe...
    💬JOIN THE COMMUNITY
    ► Website: coderdave.io
    ► Discord: geni.us/cddiscord
    ► Newsletter: coderdave.io/n...
    ► Blog: dev.to/n3wt0n
    ► GitHub: github.com/n3wt0n
    ► Twitter: / davidebenvegnu
    ► Facebook: / coderdaveyt
    🎥VIDEOS
    ► GitHub Actions for .Net Framwork: • How to use GitHub Acti...
    ► Use GitHub like a PRO: • Use GitHub like a PRO!...
    ► GitHub videos: • GitHub
    📄RESOURCES
    ► GitHub repo with examples: github.com/n3w...
    🎤PODCAST: geni.us/cdpodcast
    ❓QUESTIONS?
    Have a question about DevOps, Cloud, Coding, or Anything Else? Post in comments section of this video!
    🔴SUBSCRIBE to CoderDave here: www.youtube.co...
    _______________
    👕GET MY MERCH: geni.us/cdmerch
    🔮TOOLS I USE
    ► Twingate - Connect to your Private Resources SECURELY: geni.us/twingate
    ► TubeBuddy - #1 RUclips channel Management tool (FREE): www.tubebuddy....
    ► Moosend - Free Newsletter and Automation Platform: geni.us/moosend
    📸🖥️GEAR AND SOFTWARE
    ► Music - Epidemic Sound (Get 30 days free): epidemicsound....
    ► Editing - Adobe Premiere Pro: geni.us/AdobeV...
    ► Gear I Use for RUclips: kit.co/CoderDa...
    ► Gear I Use for Streaming: kit.co/CoderDa...
    ► My Computer Setup: kit.co/CoderDa...
    ► Full office setup: github.com/n3w...
    Disclaimer:
    Some product links are affiliate links which means if you buy something I'll receive a small commission at no additional cost to you.
    As an Amazon Associate, I earn from qualifying purchases.

Комментарии • 16

  • @CoderDave
    @CoderDave  4 года назад +2

    ✨Question of the day✨: What do you use GitHub actions for?

  • @dinkelburk7518
    @dinkelburk7518 7 месяцев назад +1

    plies I need help

    • @CoderDave
      @CoderDave  7 месяцев назад

      Check the “need help with DevOps” link in the video description 😄

  • @Thanishqrangampally
    @Thanishqrangampally 3 года назад +1

    Hi @CoderDave, could you kindly let me know how to create a single Nuget package with multiple projects in a solution file. Thank you.

    • @CoderDave
      @CoderDave  3 года назад +1

      Hi. I guess it depends on your use case.
      Let's say you have the projects A, B, C, D in your solution, and project A references project B, C and D.
      If you want to create a NuGet Package for project A and that should include also the files from B,C and D you can use the following command:
      nuget pack A.csproj -IncludeReferencedProjects
      Provided of course that you create the nuspec file for all projects, with the same name.
      You can read more about it here: docs.microsoft.com/en-us/nuget/create-packages/creating-a-package

  • @SHW_ADempiere
    @SHW_ADempiere 2 года назад +1

    Thank you very much vor the sharing.
    Your videos are informative and easy to follow.

    • @CoderDave
      @CoderDave  2 года назад

      Thank, happy to know you’ve enjoyed it 😀

  • @prabir1211
    @prabir1211 3 года назад +1

    Thank you for this video, it’s really helpful. I have a question it possible to compare current branch with master branch of repo and copy difference into new folder using GitHub actions?

    • @CoderDave
      @CoderDave  3 года назад +1

      You can actually do something like that, but it is not specific to Actions. You have to use some "git magic".
      You can use *_git diff master..OTHER_BRANCH_NAME --name-only_* and this will give you the list of files modified. then you can do whatever you want with them :)

  • @mahidharreddy5845
    @mahidharreddy5845 3 года назад +1

    Hi @CoderDave
    I am unable to add "GITHUB_TOKEN" as a secret since "GITHUB_" is utilized by Github org. So how to proceed further?

    • @CoderDave
      @CoderDave  3 года назад +1

      Hey, you don’t have to add it. GITHUB_TOKEN is a system secret which already exists and it’s automatically generated for you. You can just use it in your workflow 😀

    • @CoderDave
      @CoderDave  3 года назад +1

      Check out this video ruclips.net/video/jEK07KPEjnY/видео.html in which I explain everything there is to know about the GITHUB_TOKEN