@@ -2,6 +2,7 @@ name: release-version
2
2
run-name : " Release ${{ github.event.ref }}"
3
3
on :
4
4
push :
5
+ branches : more-platforms
5
6
tags :
6
7
- " *"
7
8
@@ -112,41 +113,41 @@ jobs:
112
113
env :
113
114
GH_TOKEN : ${{ github.token }}
114
115
115
- publish :
116
- runs-on : ubuntu-latest
117
- needs : build-linux
118
-
119
- steps :
120
- - name : Checkout GitHub Pages
121
- uses : actions/checkout@v4
122
- with :
123
- ref : gh-pages
124
-
125
- - name : Determine tag
126
- run : |
127
- tag=$(echo ${{github.event.ref}} | cut -d/ -f3)
128
- echo "tag=${tag}" >> $GITHUB_ENV
129
-
130
- - name : Download package artifacts
131
- uses : actions/download-artifact@v4
132
- with :
133
- name : package
134
- path : package
135
-
136
- - name : Publish crate
137
- uses : integer32llc/margo-actions@main
138
- with :
139
- crates : package/*.crate
140
- env :
141
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
142
-
143
- - name : Commit and push to GitHub Pages
144
- run : |-
145
- set -eu
146
-
147
- git config user.email "[email protected] "
148
- git config user.name "Margo GitHub Action"
149
-
150
- git add .
151
- git commit -m "Release ${tag}"
152
- git push origin gh-pages
116
+ # publish:
117
+ # runs-on: ubuntu-latest
118
+ # needs: build-linux
119
+
120
+ # steps:
121
+ # - name: Checkout GitHub Pages
122
+ # uses: actions/checkout@v4
123
+ # with:
124
+ # ref: gh-pages
125
+
126
+ # - name: Determine tag
127
+ # run: |
128
+ # tag=$(echo ${{github.event.ref}} | cut -d/ -f3)
129
+ # echo "tag=${tag}" >> $GITHUB_ENV
130
+
131
+ # - name: Download package artifacts
132
+ # uses: actions/download-artifact@v4
133
+ # with:
134
+ # name: package
135
+ # path: package
136
+
137
+ # - name: Publish crate
138
+ # uses: integer32llc/margo-actions@main
139
+ # with:
140
+ # crates: package/*.crate
141
+ # env:
142
+ # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
143
+
144
+ # - name: Commit and push to GitHub Pages
145
+ # run: |-
146
+ # set -eu
147
+
148
+ # git config user.email "[email protected] "
149
+ # git config user.name "Margo GitHub Action"
150
+
151
+ # git add .
152
+ # git commit -m "Release ${tag}"
153
+ # git push origin gh-pages
0 commit comments