Skip to content

Commit

Permalink
make image
Browse files Browse the repository at this point in the history
  • Loading branch information
zwwhdls committed Jul 5, 2023
1 parent ee85019 commit e82cd9c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,34 @@ on:
push:
branches:
- master
- fix/dockerfile
schedule:
- cron: "0 0 * * *"

jobs:
image:
runs-on: ubuntu-latest
steps:
- uses: technote-space/workflow-conclusion-action@v3
- uses: actions/checkout@v3

- name: Buildx and Push docker image nightly
env:
PASSWORD: ${{ secrets.DOCKERHUB_FUSE_ACCESS_TOKEN }}
# JFSCHAN: beta
CEVERSION: ce-nightly
EEVERSION: ee-nightly
run: |
docker login --username chnliyong --password ${PASSWORD}
make image-nightly
make image-nightly-push
make ce-image
make ee-image
make fuse-image-nightly
- name: Success
if: ${{ success() }}
run: echo "All Done"

build-matrix:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit e82cd9c

Please sign in to comment.