Add release workflow for protocol and dydxpy #1
Workflow file for this run
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 | |
# This workflow helps with creating releases. | |
# This job will only be triggered when a release tag (vX.X.X) or release candidate tag (vX.X.X-rcX) is pushed | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" # e.g.: v1.0.1 | |
- "v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+" # e.g.: v1.0.1-rc1 | |
jobs: | |
# release-protocol: | |
# name: Create Release | |
# permissions: | |
# contents: write | |
# defaults: | |
# run: | |
# working-directory: ./protocol | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout code | |
# uses: actions/[email protected] | |
# with: | |
# submodules: recursive | |
# token: ${{ secrets.GH_REPO_READ_TOKEN }} | |
# - name: set tag env | |
# run: echo "VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
# - name: install go | |
# uses: actions/setup-go@v3 | |
# with: | |
# go-version: '1.19' | |
# check-latest: true | |
# - name: Create Directory | |
# run: mkdir ./build | |
# - name: Build Reproducible Linux Binaries | |
# run: make distclean build-reproducible | |
# - name: Rename Binaries | |
# run: | | |
# mv ./build/dydxprotocold:linux-arm64 ./build/dydxprotocold-${{ env.VERSION }}-linux-arm64 | |
# mv ./build/dydxprotocold:linux-amd64 ./build/dydxprotocold-${{ env.VERSION }}-linux-amd64 | |
# - name: Compress binaries | |
# run: | | |
# tar -cvzf dydxprotocold-${{ env.VERSION }}-linux-arm64.tar.gz \ | |
# ./build/dydxprotocold-${{ env.VERSION }}-linux-arm64 | |
# tar -cvzf dydxprotocold-${{ env.VERSION }}-linux-amd64.tar.gz \ | |
# ./build/dydxprotocold-${{ env.VERSION }}-linux-amd64 | |
# - name: Create Release | |
# id: create_release | |
# uses: actions/create-release@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# tag_name: ${{ github.ref }} | |
# release_name: Release ${{ github.ref }} | |
# # TODO(DEC-1743): add more helpful release notes and change logs | |
# body: Release ${{ env.VERSION }} | |
# draft: true | |
# prerelease: false | |
# - name: Upload linux-amd64 tar.gz | |
# uses: actions/upload-release-asset@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ github.token }} | |
# with: | |
# upload_url: ${{ steps.create_release.outputs.upload_url }} | |
# asset_path: ./dydxprotocold-${{ env.VERSION }}-linux-amd64.tar.gz | |
# asset_name: dydxprotocold-${{ env.VERSION }}-linux-amd64.tar.gz | |
# asset_content_type: application/gzip | |
# - name: Upload linux-arm64 tar.gz | |
# uses: actions/upload-release-asset@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ github.token }} | |
# with: | |
# upload_url: ${{ steps.create_release.outputs.upload_url }} | |
# asset_path: ./dydxprotocold-${{ env.VERSION }}-linux-arm64.tar.gz | |
# asset_name: dydxprotocold-${{ env.VERSION }}-linux-arm64.tar.gz | |
# asset_content_type: application/gzip | |
# # TODO(DEC-1743): add build report and binary check sums | |
release-dydxpy: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./dydxpy | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Install Dependencies | |
run: pip install -r requirements.txt | |
- name: Install Poetry dependencies | |
run: poetry install --no-root | |
- name: Build package | |
run: poetry build | |
# - name: Publish to PyPI | |
# env: | |
# TWINE_USERNAME: __token__ | |
# TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
# run: | | |
# twine upload -r pypi dist/* |