Merge pull request #53 from rhettre/feature/release-workflow #4
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: Attach Asset to Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build-and-upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
mkdir python | |
pip install -r coinbase-advancedtrade-python -- target ./python | |
- name: Build layer.zip | |
run: | | |
zip -r9 layer.zip python | |
- name: Get Release | |
id: get_release | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
const release = await github.rest.repos.getReleaseByTag({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
tag: context.ref.replace('refs/tags/', '') | |
}); | |
core.setOutput('upload_url', release.data.upload_url); | |
- name: Upload Release Asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.get_release.outputs.upload_url }} | |
asset_path: ./layer.zip | |
asset_name: layer-${{ github.ref_name }}.zip | |
asset_content_type: application/zip |