GitHub Actions 使用笔记

基本概念

Workflow :工作流程是可配置的自动化过程,可以运行一个或多个作业。它由一个或多个jobs构成,每个job由多个step构成,而每个step可以依次执行一个或多个action,

Event: 事件是存储库中发生的特定活动,触发工作流程运行。

Job: 在GitHub Actions中,Job是一个持续集成运行中的任务单元,代表一次持续集成的运行,可以完成多个任务。一个Workflow由一个或多个Jobs构成,而每个Job由多个Steps构成,一步步完成具体的操作。

Step:一步步的运行操作

Runners:运行器是在触发时运行工作流程的服务器。

触发条件

触发条件 有很多,可以是issue 创建,可以是 git 的 pr 和push ,可以是 定时器,全部的事件

yml 复制代码
on:
  issues:
    types:
      - opened
      - labeled
  push:
    branches:
      - main
    tags:        
      - v2
      - v*
  schedule:
    # * is a special character in YAML so you have to quote this string
    - cron:  '30 5,17 * * *'

授权

在构建过程中,会读写一些内容,根据自己的需求设置权限,这里是全部的权限,可以在整个job中设置,也可以在每个 step 中设置

yaml 复制代码
permissions:
  actions: read|write|none
  checks: read|write|none
  contents: read|write|none
  deployments: read|write|none
  id-token: read|write|none
  issues: read|write|none
  discussions: read|write|none
  packages: read|write|none
  pages: read|write|none
  pull-requests: read|write|none
  repository-projects: read|write|none
  security-events: read|write|none
  statuses: read|write|none

permissions: write-all

条件

依赖条件

yaml 复制代码
jobs:
	job1:
	job2:
	    needs: job1
	job3:
	    needs: [job1, job2]

	production-deploy:
	    if: github.repository == 'octo-org/octo-repo-prod'
	    runs-on: ubuntu-latest
		steps:
		  - name: My first step
		    if: ${{ github.event_name == 'pull_request' && github.event.action == 'unassigned' }}
		    run: echo This event is a pull request that had an assignee removed.

运行时判断

yaml 复制代码
name: Run a step if a secret has been set
on: push
jobs:
  my-jobname:
    runs-on: ubuntu-latest
    env:
      super_secret: ${{ secrets.SuperSecret }}
    steps:
      - if: ${{ env.super_secret != '' }}
        run: echo 'This step will only run if the secret has a value set.'
      - if: ${{ env.super_secret == '' }}
        run: echo 'This step will only run if the secret does not have a value set.'

运行环境

yaml 复制代码
jobname:
	runs-on: [self-hosted, linux, x64, gpu]

可用的运行环境

ubuntu-latest, ubuntu-22.04, ubuntu-20.04 The ubuntu-latest label currently uses the Ubuntu 22.04 runner image.
windows-latest, windows-2022, windows-2019 The windows-latest label currently uses the Windows 2022 runner image.
macos-latest, macos-14, macos-13, macos-12, macos-11 The macos-latest workflow label currently uses the macOS 14 runner image.
yaml 复制代码
steps:
  - name: Display the path
    shell: bash
    run: echo $PATH

steps:
  - name: Display the path
    shell: python
    run: |
      import os
      print(os.environ['PATH'])

组合环境

yaml 复制代码
strategy:
      matrix:
        include:
          - site: "production"
            datacenter: "site-a"
          - site: "staging"
            datacenter: "site-b"

环境变量

yaml 复制代码
environment:
  name: production_environment
  url: https://github.com

The value of url can be an expression. Allowed expression contexts: github, inputs, vars, needs, strategy, matrix, job, runner, and env. For more information about expressions,

github doc

使用公共的action

yaml 复制代码
jobs:
  my_first_job:
    steps:
      - name: My first step
        # Uses the default branch of a public repository
        uses: actions/heroku@main
      - name: My second step
        # Uses a specific version tag of a public repository
        uses: actions/aws@v2.0.1

上传 构建产物

bash 复制代码
   - uses: actions/upload-artifact@v3
        if: matrix.os == 'ubuntu-latest'
        with:
          name: artifacts-${{ matrix.arch }}
          path: |
            ./target/${{ matrix.target }}/release/bundle/appimage/**.AppImage.*
            ./target/${{ matrix.target }}/release/bundle/deb/**.deb

发布

yaml 复制代码
 - name: Create Release
        uses: softprops/action-gh-release@master
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          tag_name: v${{ env.version }}
          name: ChatGPT v${{ env.version }}
          body: See the assets to download this version and install.
          prerelease: false
          generate_release_notes: false
          files: ./artifacts/**/*
相关推荐
卓码软件测评7 分钟前
软件首版次认定测试机构:【Apifox与UMI框架结合:实现OpenAPI规范与Mock服务的自动化流水线】
测试工具·ci/cd·性能优化·单元测试·测试用例
Coding_Doggy43 分钟前
GitHub PR流程
github
cly11 小时前
Jenkins CI/CD 平台详解
运维·ci/cd·jenkins
fiveym1 小时前
CI/CD 完整流水线全解析:环节拆解 + 角色分工
ci/cd
Devlive 开源社区2 小时前
技术周报|OpenCode登顶GitHub周榜,AI编程工具热度持续飙升
github·ai编程
阿里嘎多学长2 小时前
2026-01-12 GitHub 热点项目精选
开发语言·程序员·github·代码托管
YQ_012 小时前
GitHub 新电脑配置 & 首次上传项目
github
h7ml2 小时前
企业微信API接口对接系统中Java后端的持续集成/持续部署(CI/CD)落地技巧
java·ci/cd·企业微信
一念一花一世界2 小时前
企业级CI/CD工具选型:GitLab CI/CD vs Jenkins vs Arbess
ci/cd·gitlab·jenkins·arbess
修己xj13 小时前
解决Github QQ邮箱注册难题:绕过“Unable to verify your captcha response”错误
github