Skip to content

Release drafter

Release drafter #28

Workflow file for this run

name: Release drafter
on: workflow_dispatch
permissions:
contents: read
jobs:
draft_release:
runs-on: ubuntu-latest
outputs:
tag_name: ${{ steps.release.outputs.tag_name }}
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Read version
id: read_version
run: |
echo "version=$(cat version/VERSION | tr -d '[:space:]')" >> $GITHUB_OUTPUT
- name: Print version
run: |
echo ${{ steps.read_version.outputs.version }}
- uses: release-drafter/release-drafter@v5
id: release
with:
config-name: release-template.yaml
version: ${{ steps.read_version.outputs.version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build_and_publish:
runs-on: ubuntu-latest
needs: draft_release
name: Release linux/amd64
env:
TAG_NAME: ${{ needs.draft_release.outputs.tag_name }}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Display Go version
run: go version
- name: Build linux/amd64
env:
GOOS: darwin
GOARCH: amd64
run: |
go build -ldflags="-w -s" github.com/xvzc/SpoofDPI/cmd/spoof-dpi
tar -zcvf "spoof-dpi-$GOOS-$GOARCH.tar.gz" ./spoof-dpi && rm -rf ./spoof-dpi
gh release upload $TAG_NAME "spoof-dpi-$GOOS-$GOARCH.tar.gz"
# build_and_publish:
# needs: draft_release
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python 3.10
# uses: actions/setup-python@v3
# with:
# python-version: "3.10"
# - name: Initialize build environment
# run: |
# python -m pip install -r requirements.txt
# - name: Build pakage
# env:
# BOJ_CLI_NEXT_VERSION: ${{ needs.draft_release.outputs.tag_name }}
# run: |
# python setup.py sdist bdist_wheel
# - name: Publish to pypi
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# password: ${{ secrets.PYPI_API_TOKEN }}