Skip to content

Dagster docker compose command now working again. Updated dagster lib… #1

Dagster docker compose command now working again. Updated dagster lib…

Dagster docker compose command now working again. Updated dagster lib… #1

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.
name: Publish Docker image
on:
push:
tags:
- '*'
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKERHUB_DAGSTER_SERVER_URL }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
<<<<<<< Updated upstream

Check failure on line 40 in .github/workflows/build_release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_release.yml

Invalid workflow file

You have an error in your yaml syntax on line 40
file: ./Dockerfile_LA
=======
file: ./Dockerfile_dagster
>>>>>>> Stashed changes
push: true
tags: ${{ secrets.DOCKERHUB_DAGSTER_SERVER_URL }}:latest
labels: ${{ steps.meta.outputs.labels }}