Update EasyList Cookie to b0774541b1f941a5c0ed2d62b1ab75a8235e2e5b (#… #347
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: 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') && needs.release.outputs.tag_name != '' }} | |
uses: ./.github/workflows/ddg-release.yml | |
secrets: inherit | |
with: | |
tag_name: ${{ needs.release.outputs.tag_name }} |