21 lines
641 B
YAML
21 lines
641 B
YAML
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- id: make_version_string
|
|
uses: ./.github/actions/make-version-string
|
|
with:
|
|
assemblyInfoPath: AssemblyInfo.cs
|
|
- uses: ./.github/actions/expand-tokens
|
|
env:
|
|
VERSIONSTRING: ${{ steps.make_version_string.outputs.versionstring }}
|
|
with:
|
|
path: Constants.cs
|
|
# - name: Publish to Registry
|
|
# uses: elgohr/Publish-Docker-Github-Action@master
|
|
# with:
|
|
# name: sandersaares/test123
|
|
# username: sandersaares
|
|
# password: ${{ secrets.docker_hub_token }}
|