Skip to content

Commit

Permalink
Workflow to push nightly docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul-tuli committed Jul 24, 2023
1 parent 09c9c96 commit 5894e96
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions .github/workflows/publish-nightly-docker-images.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: Sparseml-Nightly latest using default cuda 11.1.1
uses: docker/build-push-action@v2
with:
context: ./docker
build-args: |
DEPS=all
BRANCH=main
push: true
tags: |
ghcr.io/neuralmagic/sparseml-nightly:latest
- name: Today's Sparseml-Nightly using default cuda 11.1.1
uses: docker/build-push-action@v2
with:
context: ./docker
build-args: |
DEPS=all
BRANCH=main
push: true
tags: |
ghcr.io/neuralmagic/sparseml-nightly:${{ steps.extract_tag.outputs.tag }}
- name: Today's Sparseml-Nightly Base using default cuda 11.1.1
uses: docker/build-push-action@v2
with:
context: ./docker
build-args: |
DEPS=base
BRANCH=main
push: true
tags: |
ghcr.io/neuralmagic/sparseml-nightly:base-${{ steps.extract_tag.outputs.tag }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

0 comments on commit 5894e96

Please sign in to comment.