forked from FastForwardTeam/FastForward
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (39 loc) · 1.32 KB
/
Release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Tag and Release
on:
workflow_dispatch:
inputs:
version:
description: 'Version'
required: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm ci
- name: Update version
run: echo '${{ github.event.inputs.version }}' > src/version.txt
- name: Build extension
run: node ./scripts/build.js all ver
- name: Sign for Firefox
run: npx web-ext sign --source-dir /builds/FastForward.firefox --api-key ${{ secrets.FIREFOX_API_KEY }} --api-secret ${{ secrets.FIREFOX_API_SECRET }}
- name: Tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "FastForward Team"
git tag -a ${{ github.event.inputs.version }} -m "Version ${{ github.event.inputs.version }}"
git push origin ${{ github.event.inputs.version }}
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
web-ext-artifacts/*.xpi
build/dist/FastForward_chromium*