Skip to content

Commit

Permalink
ci: publish docker image after new release
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonadoni committed Oct 25, 2023
1 parent 2890a68 commit 5ec6183
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This file is part of REANA.
# Copyright (C) 2023 CERN.
#
# REANA is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.

name: release-docker

on:
push:
tags:
- "*"

jobs:
release-docker:
runs-on: ubuntu-20.04
steps:
- name: Release docker image
uses: reanahub/reana-github-actions/release-docker@v1
with:
username: ${{ secrets.DOCKER_USER }}
token: ${{ secrets.DOCKER_TOKEN }}
organisation: ${{ secrets.DOCKER_ORGANISATION }}

0 comments on commit 5ec6183

Please sign in to comment.