Skip to content

v1.7.0.2

v1.7.0.2 #19

Workflow file for this run

name: 'Autorelease'

Check failure on line 1 in .github/workflows/autorelease.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/autorelease.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: tag-release
on:
workflow_dispatch:
workflow_call:
push:
branches: ["master"]
tags: ["v*"]
jobs:
tag-release:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
outputs:
VERSION: ${{ steps.get_version.outputs.VERSION }}
call-build:
needs: tag-release
uses: ./.github/workflows/_webext-build.yml
secrets:
signKey: ${{ secrets.AMO_SIGN_KEY }}
signSecret: ${{ secrets.AMO_SIGN_SECRET }}
call-release:
needs:
- tag-release
- call-build
uses: ./.github/workflows/_release.yml
with:
tag: ${{ needs.tag-release.outputs.VERSION }}