Це відео не доступне.
Перепрошуємо.

Introduction to GitHub Composite Actions

Поділитися
Вставка
  • Опубліковано 15 сер 2024
  • Chris Capell, senior DevOps consultant, walks us through using GitHub actions to deploy your next app.
    - FREE GUIDE Bitovi's Complete Guide to DevOps: www.bitovi.com...
    - Book a FREE DevOps consultation: www.bitovi.com...
    - Keep up with all things Bitovi HERE: www.bitovi.com...
    - Follow us on Twitter HERE: / bitovi
    - Join our Discord community HERE: / discord
    If you have a question for us, feel free to ask us on Slack, Discord, or throw it in the comments below. We love hearing from you!
    #software #devops #GitHub

КОМЕНТАРІ • 6

  • @OmoruyiOmofonmwan
    @OmoruyiOmofonmwan 7 місяців тому

    Great and informative video

  • @based3765
    @based3765 Рік тому

    How to create such an action that runs a custom Dockerfile?

    • @Bitovi
      @Bitovi  Рік тому

      Hey based! Great question.
      To run a custom Dockerfile in a composite action, you can use the “using: ‘docker’” property of the runs section.
      runs:
      using: ‘docker’
      image: ‘Dockerfile’
      Here is an example:
      github.com/bitovi/github-actions-deploy-eks-helm/blob/main/action.yaml#L89-L91
      If you have any further questions, feel free to hit us up on Discord: discord.gg/J7ejFsZnJ4

    • @Bitovi
      @Bitovi  Рік тому

      We also have DevOps Office hours every Wednesday at 12pm CT. Pop in anytime, here’s the link: meet.google.com/sbw-nchp-qsw?authuser=1&hs=122

    • @based3765
      @based3765 Рік тому

      @@Bitovi Thank you so much for this information. I was able to do it by looking a multiple examples from GitHub, including the one you've provided. I'm wondering why it's not in the documentation though :)

    • @Bitovi
      @Bitovi  Рік тому

      @@based3765 The documentation should be right here: docs.github.com/en/actions/creating-actions/creating-a-docker-container-action#creating-an-action-metadata-file :)