diff --git a/.github/workflows/deploy-image.yaml b/.github/workflows/deploy-image.yaml index 36002ca..57ddb96 100644 --- a/.github/workflows/deploy-image.yaml +++ b/.github/workflows/deploy-image.yaml @@ -2,14 +2,13 @@ name: Create and publish a Docker image # Configures this workflow to run every time a release is created. on: - release: - types: [created] + - push # Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds. env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} - VERSION: ${{ github.ref_name }} + VERSION: v0.test # There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. jobs: