Difference between revisions of "GitHub Actions"

From wikieduonline
Jump to navigation Jump to search
(One intermediate revision by the same user not shown)
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.  
+
[[wikipedia:Github Actions]] (Oct [[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.  
 
* https://github.com/actions
 
* https://github.com/actions
  
Line 13: Line 13:
  
 
::<code>[[on:]]</code>
 
::<code>[[on:]]</code>
::<code>[[jobs:]]</code>
+
::<code>[[GitHub Actions: Jobs:|jobs:]]</code>
 
::<code>[[schedule:]]</code>
 
::<code>[[schedule:]]</code>
 
::<code>[[run:]]</code>
 
::<code>[[run:]]</code>

Revision as of 16:57, 12 May 2022

wikipedia:Github Actions (Oct 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]
  • Self hosted runners can be configured


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

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: