Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Yannic committed Oct 30, 2024
1 parent 19be861 commit 7e0455a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ env:
OPAL_RPC_CREDENTIALS: ${{ secrets.OPAL_RPC_CREDENTIALS }}

jobs:
check:
runs-on: ubuntu-latest
# check:
# runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
# steps:
# - uses: actions/checkout@v4

- name: Build
run: bazel build //...
# - name: Build
# run: bazel build //...

publish:
runs-on: ubuntu-latest
needs:
- "check"
# needs:
# - "check"
if: github.ref == 'refs/heads/yannic-tag-main'

steps:
Expand All @@ -40,7 +40,7 @@ jobs:
GIT_COMMITTER_NAME: "EngFlow"
GIT_COMMITTER_EMAIL: "[email protected]"
run: |
VERSION="v$(date -u '%Y.%m.%d-%H.%M.%S')"
VERSION="$(date -u '+%Y.%m.%d-%H.%M.%S')"
echo "version=${VERSION}" >> "${GITHUB_OUTPUT}"
# 1. Download `buildozer`
Expand Down

0 comments on commit 7e0455a

Please sign in to comment.