Questions tagged «continuous-deployment»

13
持续集成与持续交付与持续部署
这三个术语有什么区别?我的大学提供以下定义: 持续集成基本上只是意味着开发人员的工作副本每天与共享主线进行几次同步。 持续交付被描述为持续集成的逻辑演进:始终能够将产品投入生产! 连续交付被描述为连续交付后的逻辑下一步:只要产品通过质量检查,就自动将其部署到生产中! 它们还提供警告:如果您能够连续部署到测试系统,有时也会使用术语“连续部署”。 这一切让我感到困惑。任何更详细(或附带示例)的解释都将受到赞赏!


1
工作流之间对Github动作的依赖性
我有一个带有两个工作流程的monorepo: .github/workflows/test.yml name: test on: [push, pull_request] jobs: test-packages: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: test packages run: | yarn install yarn test ... .github/workflows/deploy.yml deploy-packages: runs-on: ubuntu-latest needs: test-packages steps: - uses: actions/checkout@v1 - name: deploy packages run: | yarn deploy env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} ... …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.