name: Develop Github runner on: push: branches: [ main ] jobs: Deploy: runs-on: ubuntu-latest steps: - id: deploy uses: bitovi/github-actions-deploy-github-runner-to-ec2@v0.1.3 with: aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID_DEVELOPMENT }} aws_secret_access_key: ${{ secr...
name: Basic deploy on: push: branches: [ main ] jobs: EC2-Deploy: runs-on: ubuntu-latest steps: - id: deploy uses: bitovi/github-actions-deploy-docker-to-ec2@v0.5.8 with: aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS...
Skip to main content GitHub 文档 Version: Free, Pro, & Team 搜索GitHub Docs 注册 主页 GitHub Actions 关于GitHub Actions 写入工作流 快速入门 关于工作流程 使用工作流模板 选择工作流何时运行 选择工作流运行位置 选择工作流执行的操作 工作流程语法 管理工作流和部署 共享自动化 监视和故障排除...
The name for workflow runs generated from the workflow. GitHub displays the workflow run name in the list of workflow runs on your repository's "Actions" tab. Ifrun-nameis omitted or is only whitespace, then the run name is set to event-specific information for the workflow run. For...
GitHub Actions/ Write workflows/ Workflow syntax for GitHub Actions A workflow is a configurable automated process made up of one or more jobs. You must create a YAML file to define your workflow configuration. In this article About YAML syntax for workflows name run-name on on.<event_name...
Migrate to GitHub Actions Administer GitHub Actions Guides for GitHub Actions GitHub Actions/ Write workflows/ Workflow syntax for GitHub Actions A workflow is a configurable automated process made up of one or more jobs. You must create a YAML file to define your workflow configuration. ...
the 'master' branch hasn't been changed at all. So, merging the 'car' branch to the 'master' branch is going to be straight forward. Acutually, all we have to do is to append our update to the 'master' branch. This kind of merge is calledfast-forward mergeas we can see from the...
name: Basic deploy on: push: branches: [ main ] jobs: EC2-Deploy: runs-on: ubuntu-latest steps: - id: deploy name: Deploy uses: bitovi/github-actions-deploy-ollama@0.1.0 with: aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID}} aws_secret_access_key: ${{ secrets.AWS_SECRET_ACC...
:package: Create, deploy to, and shutdown Amazon EC2 instances - GitHub - bevacqua/grunt-ec2: :package: Create, deploy to, and shutdown Amazon EC2 instances
The name of your workflow. GitHub displays the names of your workflows on your repository's "Actions" tab. If you omitname, GitHub sets it to the workflow file path relative to the root of the repository. on To automatically trigger a workflow, useonto define which events can cause the ...