Skip to content

Commit

Permalink
Clean up GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
connoramoreno committed Apr 25, 2024
1 parent 548b14f commit b2e0ce5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Publish docker image for ParaStell CI
name: Build & publish Docker image for ParaStell CI

on:
# allows us to run workflows manually
Expand All @@ -12,22 +12,22 @@ jobs:
build-dependency-img:
runs-on: ubuntu-latest

name: Installing Dependencies and ParaStell
name: Install Dependencies
steps:
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build, Test, and Push ParaStell
- name: Log into GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push ParaStell Docker image
id: build-parastell
uses: docker/build-push-action@v5
with:
Expand All @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
container: ghcr.io/svalinn/parastell-ci

name: Testing CI image
name: Test CI Image
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit b2e0ce5

Please sign in to comment.