Skip to content

Neon Core 24.2.29 (#620) #24

Neon Core 24.2.29 (#620)

Neon Core 24.2.29 (#620) #24

# This workflow will generate a release distribution and upload it to PyPI
name: Publish Build and GitHub Release
on:
push:
branches:
- master
jobs:
tag_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get Version
run: |
VERSION=$(python setup.py --version)
echo "VERSION=${VERSION}" >> $GITHUB_ENV
- uses: ncipollo/release-action@v1
with:
token: ${{secrets.GITHUB_TOKEN}}
tag: ${{env.VERSION}}
build_and_publish_docker:
uses: neongeckocom/.github/.github/workflows/publish_docker.yml@master
secrets: inherit
with:
image_name: ${{ github.repository_owner }}/neon_skills
base_tag: base
extra_tag: default_skills
platforms: linux/amd64,linux/arm64