Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nightly Docker Images #1144

Merged
merged 1 commit into from
Aug 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions .github/workflows/publish-nightly-docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Publish Nightly Docker Images

on:
push:
branches:
- 'main'
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
jobs:
push-nightly-docker-image:
name: Push Version Tagged Nightly Docker Images
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
with:
buildkitd-flags: --debug

- name: Login to Github Packages
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 1

- name: Get version tag
id: extract_tag
run: echo "tag=$(date +%Y%m%d)" >> $GITHUB_OUTPUT

- name: Current Version Name
run: |
echo ${{ steps.extract_tag.outputs.tag }}

- name: DeepSparse-Nightly latest
uses: docker/build-push-action@v2
with:
context: ./docker
build-args: |
DEPS=all
BRANCH=main
push: true
tags: |
ghcr.io/neuralmagic/deepsparse-nightly:latest

- name: Today's DeepSparse-Nightly
uses: docker/build-push-action@v2
with:
context: ./docker
build-args: |
DEPS=all
BRANCH=main
push: true
tags: |
ghcr.io/neuralmagic/deepsparse-nightly:${{ steps.extract_tag.outputs.tag }}

- name: Today's DeepSparse-Nightly Base
uses: docker/build-push-action@v2
with:
context: ./docker
build-args: |
DEPS=base
BRANCH=main
push: true
tags: |
ghcr.io/neuralmagic/deepsparse-nightly:base-${{ steps.extract_tag.outputs.tag }}

- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
Loading