Skip to content

feat(ci): refactor Workflow into a reusable Action #6

feat(ci): refactor Workflow into a reusable Action

feat(ci): refactor Workflow into a reusable Action #6

Workflow file for this run

name: Release NZBGet
on: # yamllint disable-line rule:truthy
push:
branches:
- main
paths:
- .github/workflows/nzbget.yml
- apps/nzbget/**
jobs:
release:
name:
runs-on: ubuntu-22.04
env:
APP_NAME: nzbget
VERSION: 21.1
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Build Container
uses: ./.github/actions/build_container
with:
app_name: ${{ env.APP_NAME }}
version: ${{ env.VERSION }}
github_token: ${{ secrets.GITHUB_TOKEN }}