File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 5353 command : binary-builder
5454 dry-run : ${{github.ref_name != 'main'}}
5555 token : ${{ secrets.GITHUB_TOKEN }}
56+
57+ publish :
58+ if : github.ref_name == 'main'
59+ runs-on : ubuntu-latest
60+
61+ concurrency :
62+ group : publish
63+ cancel-in-progress : true
64+
65+ needs :
66+ - build
67+
68+ permissions :
69+ contents : write
70+ id-token : write
71+
72+ environment :
73+ name : github-pages
74+ url : ${{ steps.deployment.outputs.page_url }}
75+
76+ steps :
77+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
78+ with :
79+ show-progress : false
80+
81+ - name : Deploy release list to GitHub Pages
82+ id : deployment
83+ uses : containerbase/internal-tools@b29c63c57dd3f5cccfba5e58416f531c23b9e122 # v4.3.0
84+ with :
85+ command : release-list
86+ token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments