-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch CI to GitHub Actions #3
Comments
This bit is tricky: Lines 24 to 27 in 9f4912f
|
Something like this - I'll do this as a separate - name: Publish demo
run: |-
curl --silent -o 24ways-fts4.db https://24ways-fts4-db.now.sh/
pip install datasette datasette-publish-vercel
datasette publish vercel 24ways-fts4.db \
--token $NOW_TOKEN \
--project datasette-sqlite-fts4 \
--install https://github.com/simonw/sqlite-fts4/archive/$TRAVIS_TAG.zip \
--install datasette-sqlite-fts4 \
--install datasette-json-html \
--source_url=https://github.com/simonw/sqlite-fts4 |
I need the GitHub Actions equivalent of |
I think that's:
|
Actually I will do it in the - name: Publish demo
env:
GITHUB_TAG: ${{ env.GITHUB_TAG }}
NOW_TOKEN: ${{ secrets.NOW_TOKEN }}
run: |-
curl --silent -o 24ways-fts4.db https://24ways-fts4-db.now.sh/
pip install datasette datasette-publish-vercel
datasette publish vercel 24ways-fts4.db \
--token $NOW_TOKEN \
--project datasette-sqlite-fts4 \
--install https://github.com/simonw/sqlite-fts4/archive/$GITHUB_TAG.zip \
--install datasette-sqlite-fts4 \
--install datasette-json-html \
--source_url=https://github.com/simonw/sqlite-fts4 |
I created a |
I'm going to release a 1.0 to exercise this. |
Rats, the Vercel deploy failed:
So it looks like the |
That worked and published https://datasette-sqlite-fts4.simonw.vercel.app/ |
No description provided.
The text was updated successfully, but these errors were encountered: