name: Documentation on: push: branches: - main paths: - 'docs/**' - 'mkdocs.yml' pull_request: paths: - 'docs/**' - 'mkdocs.yml' jobs: docs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: fetch-
GitHub Actions documentation Automate, customize, and execute your software development workflows right in your repository with GitHub Actions. You can discover, create, and share actions to perform any job you'd like, including CI/CD, and combine actions in a completely customized workflow. Overvi...
Générez une clé pour la lecture et l’écriture dans ce magasin de secrets. Stockez la clé en tant que secret de dépôt. Dans l’exemple de workflow suivant, le nom du secret estSECRET_STORE_CREDENTIALS. Pour plus d’informations, consultez «Utilisation de secrets dans ...
workflows de développement logiciel directement dans votre référentiel avec GitHub Actions. Vous pouvez découvrir, créer et partager des actions pour effectuer n’importe quel travail de votre choix, y compris des tâches de CI/CD, et combiner des actions en un workflow entièrement ...
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.
# This workflow uses actions that are not certified by GitHub.# They are provided by a third-party and are governed by # separate termsofservice,privacy policy,and support # documentation.on:push:tags:-"v*"env:# Use docker.ioforDocker HubifemptyREGISTRY:docker.io ...
actions 是可以联合收割机以创建作业和自定义工作流的单个任务。您可以创建自己的操作,或使用和自定义GitHub社区共享的操作。 可以通过编写自定义代码来创建操作,这些代码可以以您喜欢的任何方式与您的存储库进行交互,包括与GitHub的API和任何公开可用的第三方API集成。
Reusable Workflows: In addition to individual actions, this repository offers a top-level workflow (documentation-checks.yaml) that combines multiple checks. This workflow can be called from other repositories, providing a comprehensive documentation validation process in a single step. Using the Reusable...
GitHub Actions are scripts that adhere to a yml data format. Each repository has anActionstab that provides a quick and easy way to get started with setting up your first script. If you see a workflow that you think might be a great starting point, just select theConfigurebutton to add...
3. Use the composite action in a workflow Once the composite action is created, it can be referenced in a GitHub Actions workflow. YAML Copy jobs: build: runs-on: ubuntu-latest steps: - name: Use my composite action uses: ./.github/actions/my-composite-action with: node-version: '1...