Skip to content

Fix rule for bing (#529) #319

Fix rule for bing (#529)

Fix rule for bing (#529) #319

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci') }}
outputs:
tag_name: ${{ steps.remember_tag.outputs.tag_name }}
steps:
- uses: actions/checkout@v3
- name: Prepare repository
run: git fetch --unshallow --tags
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm ci
- name: Compile filterlist
run: |
npm run compile-filterlist
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm run release
- name: Remember git tag
id: remember_tag
run: echo "tag_name=$(git describe --exact-match --tags)" >> "$GITHUB_OUTPUT"
ddg-release:
name: Propagate to DDG apps
needs: release
if: ${{ !contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci') }}
uses: ./.github/workflows/ddg-release.yml
secrets: inherit
with:
tag_name: ${{ needs.release.outputs.tag_name }}