We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04958c1 commit 60de522Copy full SHA for 60de522
.github/workflows/dev.yml
@@ -225,6 +225,34 @@ jobs:
225
run: |
226
chmod +x ./semaphore && ./semaphore migrate --config config.json
227
228
+ migrate-sqlite:
229
+ runs-on: ubuntu-latest
230
+
231
+ needs:
232
+ - build-local
233
234
+ steps:
235
+ - name: Download artifacts
236
+ uses: actions/download-artifact@v4
237
+ with:
238
+ name: semaphore
239
240
+ - name: Write config
241
+ run: |
242
+ cat > config.json <<EOF
243
+ {
244
+ "sqlite": {
245
+ "host": "/tmp/db.sqlite"
246
+ },
247
+ "dialect": "sqlite",
248
+ "email_alert": false
249
+ }
250
+ EOF
251
252
+ - name: Migrate database
253
254
+ chmod +x ./semaphore && ./semaphore migrate --config config.json
255
256
integrate-boltdb:
257
runs-on: ubuntu-latest
258
0 commit comments