Skip to content

adding create release step #16

adding create release step

adding create release step #16

Workflow file for this run

name: Build this project using Pygbag
on:
push:
branches:
- main
jobs:
build:
name: building project
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: checkout
uses: actions/[email protected]
- name: build
run: |
echo "Installing pygbag"
python3 -m pip install pygbag
echo "pygbag success!"
echo "building the project"
python -m pygbag --build $GITHUB_WORKSPACE/main.py
echo "DONE"
- name: create release
uses: ncipollo/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GH_CREDENTIALS }}
tag: ${{ github.ref_name }}