File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6666 docker run --rm -v "${PWD}":/code -v "/tmp/emcc_lto:/emsdk/upstream/emscripten/cache/sysroot/lib/wasm32-emscripten/lto" libass/jso:latest
6767
6868 - name : Upload Nightly Build
69- uses : actions/upload-artifact@v2
69+ uses : actions/upload-artifact@v3
7070 if : (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/master'
7171 with :
7272 name : js
9797 git config --global user.email "actions@noreply.github.com"
9898 git config --global user.name "GitHub Action"
9999 git add assets/js
100- git commit -m "$(printf \
101- "Update binaries to latest nightly\n\nFrom %s" "${{ github.sha }}")"
102- git push origin gh-pages
100+ (git commit -m "$(printf \
101+ "Update binaries to latest nightly\n\nFrom %s" "${{ github.sha }}")" \
102+ && git push origin gh-pages) \
103+ || : # Ignore if nothing changed
You can’t perform that action at this time.
0 commit comments