This repository was archived by the owner on Mar 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 74
74
needs : [ calendar ]
75
75
runs-on : ubuntu-latest
76
76
environment : staging
77
- if : github.ref == 'refs/heads/staging' && github.event_name == 'push'
77
+ if : ( github.ref == 'refs/heads/staging' && github.event_name == 'push') || github.event_name == 'schedule '
78
78
steps :
79
79
- name : Download pages
80
80
uses : actions/download-artifact@v4
90
90
filename : ../release-staging-${{ env.timestamp }}.zip
91
91
directory : public
92
92
- name : Create Release
93
- uses : ncipollo/release-action@v1.15 .0
93
+ uses : ncipollo/release-action@v1.16 .0
94
94
with :
95
95
tag : staging-${{ env.timestamp }}
96
96
name : Website staging version ${{ env.timestamp }}
@@ -102,7 +102,7 @@ jobs:
102
102
needs : [ calendar ]
103
103
runs-on : ubuntu-latest
104
104
environment : production
105
- if : github.ref == 'refs/heads/production' && github.event_name == 'push'
105
+ if : ( github.ref == 'refs/heads/production' && github.event_name == 'push') || github.event_name == 'schedule '
106
106
steps :
107
107
- name : Download pages
108
108
uses : actions/download-artifact@v4
@@ -118,11 +118,12 @@ jobs:
118
118
filename : ../release-production-${{ env.timestamp }}.zip
119
119
directory : public
120
120
- name : Create Release
121
- uses : ncipollo/release-action@v1.15 .0
121
+ uses : ncipollo/release-action@v1.16 .0
122
122
with :
123
123
makeLatest : true
124
124
tag : production-${{ env.timestamp }}
125
125
name : Website production version ${{ env.timestamp }}
126
126
body : Website production version ${{ env.timestamp }}
127
127
artifacts : release-production-${{ env.timestamp }}.zip
128
128
token : ${{ secrets.GITHUB_TOKEN }}
129
+
You can’t perform that action at this time.
0 commit comments