Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
whdalsrnt committed Nov 17, 2023
2 parents 7a03508 + ae8789f commit 7afe0bc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/dispatch_build_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: set version with current date
id: versioning
run: |
echo "VERSION=$(cat src/VERSION | cut -c 2-).${{ env.TIME }}" >> $GITHUB_OUTPUT
echo "VERSION=$(sed 's/v//' < src/VERSION).${{ env.TIME }}" >> $GITHUB_OUTPUT
- name: Notice when job fails
if: failure()
uses: 8398a7/[email protected]
Expand Down Expand Up @@ -61,7 +61,6 @@ jobs:
uses: docker/build-push-action@v4
with:
context: .
platform: ${{ env.ARCH }}
push: true
tags: pyengine/${{ env.SERVICE }}:${{ env.VERSION }}

Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/push_build_dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "[Push] Build dev"

on:
workflow_dispatch:

jobs:
none:
run-on: ubuntu-latest
steps:
- name: none
run: echo "This is deprecated."

# deprecated workflow

0 comments on commit 7afe0bc

Please sign in to comment.