Skip to content

Merge pull request #2474 from mneunomne/master #30

Merge pull request #2474 from mneunomne/master

Merge pull request #2474 from mneunomne/master #30

Workflow file for this run

name: AdNauseam release
on:
create:
branches: master
permissions:
contents: read
# I used the following project as template to get started:
# https://github.com/dessant/search-by-image/blob/master/.github/workflows/ci.yml
jobs:
build:
permissions:
contents: write # for creating release
strategy:
matrix:
node-version: [18.x]
name: Build packages
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Clone uAssets
run: |
tools/pull-assets.sh
# https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html
- name: Get release information
id: release_info
run: |
echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Assemble release notes
run: |
> release.body.txt
grep -m1 -B10000 -- "----------" CHANGELOG.md >> release.body.txt
sed -e 's/%version%/${{ steps.release_info.outputs.VERSION }}/g' RELEASE.HEAD.md >> release.body.txt
- name: Create GitHub release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
tag_name: ${{ steps.release_info.outputs.VERSION }}
release_name: ${{ steps.release_info.outputs.VERSION }}
draft: true
prerelease: true
<<<<<<< HEAD

Check failure on line 51 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 51
- name: Setup Chrome
id: setup-chrome
uses: browser-actions/setup-chrome@v1
- name: Setup firefox
id: setup-firefox
uses: browser-actions/setup-firefox@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install web-ext
run: |
npm install --global web-ext
=======
body_path: release.body.txt
>>>>>>> upstream1.54.0
- name: Build MV2 packages
run: |
tools/make-artifacts.sh
- name: Upload Chromium package
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifacts/adnauseam-${{ steps.release_info.outputs.VERSION }}.chromium.zip
asset_name: adnauseam-${{ steps.release_info.outputs.VERSION }}.chromium.zip
asset_content_type: application/octet-stream
- name: Upload Firefox package
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifacts/adnauseam-${{ steps.release_info.outputs.VERSION }}.firefox.zip
asset_name: adnauseam-${{ steps.release_info.outputs.VERSION }}.firefox.zip
asset_content_type: application/octet-stream
- name: Upload Edge package
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifacts/adnauseam-${{ steps.release_info.outputs.VERSION }}.edge.zip
asset_name: adnauseam-${{ steps.release_info.outputs.VERSION }}.edge.zip
asset_content_type: application/octet-stream
- name: Upload Opera package
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: artifacts/adnauseam-${{ steps.release_info.outputs.VERSION }}.opera.crx
asset_name: adnauseam-${{ steps.release_info.outputs.VERSION }}.opera.crx
asset_content_type: application/octet-stream