forked from GitHubMirrors/silverbullet-icalendar
Robust fetch with User-Agent and URL encoding
Some checks failed
Build SilverBullet Plug / build (push) Failing after 26s
Some checks failed
Build SilverBullet Plug / build (push) Failing after 26s
This commit is contained in:
7
.github/workflows/publish.yml
vendored
7
.github/workflows/publish.yml
vendored
@@ -22,7 +22,6 @@ jobs:
|
||||
|
||||
- name: Build Plug
|
||||
run: |
|
||||
deno --version
|
||||
deno task build -- --no-check
|
||||
ls -lh *.plug.js
|
||||
|
||||
@@ -30,18 +29,16 @@ jobs:
|
||||
run: |
|
||||
git config --local user.email "action@github.com"
|
||||
git config --local user.name "GitHub Action"
|
||||
git status
|
||||
git branch -a
|
||||
git add icalendar.plug.js
|
||||
if git diff --quiet --staged; then
|
||||
echo "No changes to commit"
|
||||
else
|
||||
git commit -m "Build and update icalendar.plug.js [skip ci]"
|
||||
git push --force
|
||||
git push
|
||||
fi
|
||||
|
||||
- name: Upload Build Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: icalendar-plug
|
||||
path: "*.plug.js"
|
||||
path: "*.plug.js"
|
||||
|
||||
Reference in New Issue
Block a user