File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 - edge # Edge, tags as "edge"; next major version; deploys to edge.manifoldapp.org
77 - main # Preview, tags as "preview"; bugfix/minor version preview; deploys to preview.manifoldapp.org
88 - release # Stable production build, tags as "latest" and "<semver>" from MANIFOLD_VERSION
9+ workflow_dispatch : # Allows this workflow to be triggered by release-please
910
1011concurrency :
1112 group : ${{ github.workflow }}-${{ github.ref_name }}
Original file line number Diff line number Diff line change 2929 runs-on : ubuntu-latest
3030 permissions :
3131 contents : write
32+ actions : write
3233 steps :
3334 - uses : actions/checkout@v4
3435 with :
3536 fetch-depth : 0
3637 - name : Reset release branch to main
3738 run : git push origin ${{ github.sha }}:refs/heads/release --force
39+ - name : Trigger Docker build on release branch
40+ env :
41+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
42+ run : gh workflow run docker.yml --ref release
You can’t perform that action at this time.
0 commit comments