Difference between revisions of "GitHub Actions"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
[[wikipedia:Github Actions]] ([[2018]]) <ref>https://techcrunch.com/2018/10/16/github-launches-actions-its-workflow-automation-tool/</ref> <ref>https://github.blog/2018-10-16-future-of-software/</ref> allows building [[continuous integration]] and [[continuous deployment]] pipelines for testing, releasing and deploying software without the use of third-party websites/platforms. GitHub Actions can be enabled, disabled or restricted to specific actions. <ref>https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-specific-actions-to-run</ref>  
+
[[wikipedia:Github Actions]] ([[2018]]) <ref>https://techcrunch.com/2018/10/16/github-launches-actions-its-workflow-automation-tool/</ref> <ref>https://github.blog/2018-10-16-future-of-software/</ref> allows building [[continuous integration]] and [[continuous deployment]] pipelines for testing, releasing and deploying software without the use of third-party websites/platforms.  
 +
 
 +
Features:
 +
* Can be enabled, disabled or restricted to specific actions. <ref>https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-specific-actions-to-run</ref>  
 +
*
  
  

Revision as of 10:33, 20 January 2022

wikipedia:Github Actions (2018) [1] [2] allows building continuous integration and continuous deployment pipelines for testing, releasing and deploying software without the use of third-party websites/platforms.

Features:

  • Can be enabled, disabled or restricted to specific actions. [3]


.github/workflows/

on:
jobs:
schedule:
run:
uses:
uses: actions/checkout@v2
uses: actions/upload-artifact@v2
uses: actions/setup-java@v2 [4]
uses: actions/setup-node@v2 [5]
uses: serverless/github-action@master
if:
workflow_dispatch:
runs-on:
steps:
deploy:
env:

Activities

Changelog / announcements

Related terms

See also

  • https://techcrunch.com/2018/10/16/github-launches-actions-its-workflow-automation-tool/
  • https://github.blog/2018-10-16-future-of-software/
  • https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-specific-actions-to-run
  • https://github.com/actions/setup-java
  • https://github.com/actions/setup-node
  • Advertising: