Skip to content

Commit

Permalink
Merge pull request #17 from tfirchau/release-2024-02
Browse files Browse the repository at this point in the history
Update to release 2024-02
  • Loading branch information
gorenje authored Jun 8, 2024
2 parents b42625b + ddaceef commit 16cbec2
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/2024-02.dockerpush.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Push-Release-2024-02-To-Dockerhub

on:
push:
branches: [ release-2024-02 ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile.hub
push: true
tags: gorenje/sysmlv2-jupyter:2024-02
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SysMLv2 Release to use. First is release version of the API server, the second is
# the release version of the SysMLv2
release = 2023-02
sysml_release= 2023-02
release = 2024-02
sysml_release= 2024-02

##
## Local setup
Expand Down

0 comments on commit 16cbec2

Please sign in to comment.