Deployment #1
Workflow file for this run
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: DAS CLI Build | |
on: | |
push: | |
branches: | |
- feat/deployment | |
# workflow_dispatch: | |
# inputs: | |
# version: | |
# description: "Version" | |
# required: true | |
# changelog: | |
# description: "Changelog" | |
# required: true | |
# type: string | |
jobs: | |
# tag: | |
# uses: singnet/das-scripts-pipeline/.github/workflows/action.yml@master | |
# with: | |
# version: ${{ github.event.inputs.version }} | |
# version-strategy: bump-version-from-variable-value | |
# job-image-namespace: trueagi | |
# job-image-version-semver: semantic-versioning | |
# main-branch: master | |
# version-tag-regex-pattern: /^v\d+\.\d+\.\d+$/ | |
# version-require-confirmation: "true" | |
# changelog: ${{ inputs.changelog }} | |
# secrets: inherit | |
build: | |
runs-on: ubuntu-latest | |
# needs: tag | |
# if: github.ref == 'refs/heads/master' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build Dockerfile | |
run: docker build -t das-cli:latest . | |
- name: Build das-cli binary | |
run: docker run --rm -v "$(pwd)/dist":/app/dist das-cli:latest | |
- name: Upload das-cli artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: das-cli | |
path: dist/das-cli |