Revert "Add Blt sizzle time tracking and in-progress indicator" #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
jobs: | |
build: | |
name: Publish webextension | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 12 | |
# Zip the entire repository | |
- name: Zip repository | |
run: zip -r extension.zip . | |
# Upload the zip file as a build artifact | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: webextension | |
path: extension.zip | |