Skip to content

Commit

Permalink
Create makefile.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonm23 authored Sep 24, 2024
1 parent d9030dd commit 07d284c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Publish to Add-ons

on:
push:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Package Add-on
run: |
make
- name: Publish
uses: wdzeng/firefox-addon@v1
with:
addon-guid: "[email protected]"
xpi-path: google-home-web-hide-deactivated.zip
self-hosted: false
jwt-issuer: ${{ secrets.FIREFOX_JWT_ISSUER }}
jwt-secret: ${{ secrets.FIREFOX_JWT_SECRET }}

0 comments on commit 07d284c

Please sign in to comment.