new actions using ci #162
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: Tributech CI - main | ||
on: | ||
push: | ||
branches: [ master ] | ||
tags: | ||
- '*' | ||
pull_request: | ||
branches: [ master, feature/*, hotfix/*, fix/* ] | ||
env: | ||
USED_DOTNET_VERSION: '16.X' | ||
jobs: | ||
vars: | ||
runs-on: ubuntu-22.04 | ||
outputs: | ||
dotnet_version: ${{ env.USED_DOTNET_VERSION }} | ||
steps: | ||
- run: echo "Exposing env vars" | ||
publish: | ||
needs: [ 'vars' ] | ||
name: GitHub Pages | ||
uses: tributech-solutions/tributech-github-actions-ci/.github/workflows/github-pages-deploy.yaml@deploy-gh-page-blob-storage-testing | ||
Check failure on line 28 in .github/workflows/deploy-gh-pages.yml
|
||
with: | ||
DOTNET_VERSION: ${{ needs.vars.outputs.dotnet_version }} | ||
secrets: | ||
GH_PAGES_DEPLOY: ${{ secrets.GH_PAGES_DEPLOY }} |