Release #27
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: | |
workflow_dispatch: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build-linux: | |
name: Linux x64 | |
uses: ./.github/workflows/build-linux.yml | |
with: | |
python_version: '3.10' | |
chromium_version: '129.0.6668.58-1' | |
build-macos: | |
name: macOS x64 | |
uses: ./.github/workflows/build-macos.yml | |
with: | |
python_version: '3.10' | |
chromium_version: '129.0.6668.58-1.1' | |
chromedriver_version: '131.0.6724.0' | |
build-windows: | |
name: Windows x64 | |
uses: ./.github/workflows/build-windows.yml | |
with: | |
python_version: '3.10' | |
chromium_version: '129.0.6668.58-1.1' | |
chromedriver_version: '131.0.6724.0' | |
build-docker: | |
name: Docker | |
uses: ./.github/workflows/build-docker.yml | |
with: | |
repo: 'ghcr.io/${{ github.repository }}' | |
context_path: '.' | |
image: 'scrapegoat' | |
tag: ${{ github.ref_name }} | |
dockerfile_path: './GoatFile' | |
secrets: | |
PACKAGES_TOKEN: ${{ secrets.PACKAGES_TOKEN }} | |
# create-release: | |
# needs: [build-linux, build-macos, build-windows, build-docker] | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v4 | |
# - name: Download Linux artifact | |
# uses: actions/download-artifact@v4 | |
# with: | |
# name: Linux Executable | |
# path: artifacts | |
# - name: Download macOS artifact | |
# uses: actions/download-artifact@v4 | |
# with: | |
# name: macOS Executable | |
# path: artifacts | |
# - name: Download Windows artifact | |
# uses: actions/download-artifact@v4 | |
# with: | |
# name: Windows Executable | |
# path: artifacts | |
# - name: Read release message | |
# id: release_message | |
# run: echo "message=$(cat RELEASE_MESSAGE.md)" >> $GITHUB_OUTPUT | |
# - name: Create GitHub Release | |
# uses: softprops/action-gh-release@v1 | |
# with: | |
# files: | | |
# artifacts/scrapegoat_linux | |
# artifacts/scrapegoat_macos_x64 | |
# artifacts/scrapegoat_windows_x64.exe | |
# body: ${{ steps.release_message.outputs.message }} | |
# tag_name: ${{ github.ref_name }} | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |