Skip to content

Commit

Permalink
Remove "-slurm" from image names (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherwharrop-noaa authored Nov 8, 2024
1 parent 7865a5b commit 320c293
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ on:
workflow_dispatch:

env:
REGISTRY_FRONTEND_IMAGE: ghcr.io/noaa-gsl/dockerspackstackslurmcluster/slurm-frontend
REGISTRY_MASTER_IMAGE: ghcr.io/noaa-gsl/dockerspackstackslurmcluster/slurm-master
REGISTRY_NODE_IMAGE: ghcr.io/noaa-gsl/dockerspackstackslurmcluster/slurm-node
REGISTRY_FRONTEND_IMAGE: ghcr.io/noaa-gsl/dockerspackstackslurmcluster/frontend
REGISTRY_MASTER_IMAGE: ghcr.io/noaa-gsl/dockerspackstackslurmcluster/master
REGISTRY_NODE_IMAGE: ghcr.io/noaa-gsl/dockerspackstackslurmcluster/node
AWS_REGION: us-east-2

jobs:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/package-cleanup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@ jobs:
contents: read
steps:
-
name: Remove untagged versions of dockerspackstackslurmcluster/slurm-frontend
name: Remove untagged versions of dockerspackstackslurmcluster/frontend
uses: actions/delete-package-versions@v5
with:
package-name: 'dockerspackstackslurmcluster/slurm-frontend'
package-name: 'dockerspackstackslurmcluster/frontend'
package-type: 'container'
min-versions-to-keep: 0
delete-only-untagged-versions: 'true'
-
name: Remove untagged versions of dockerspackstackslurmcluster/slurm-master
name: Remove untagged versions of dockerspackstackslurmcluster/master
uses: actions/delete-package-versions@v5
with:
package-name: 'dockerspackstackslurmcluster/slurm-master'
package-name: 'dockerspackstackslurmcluster/master'
package-type: 'container'
min-versions-to-keep: 0
delete-only-untagged-versions: 'true'
-
name: Remove untagged versions of dockerspackstackslurmcluster/slurm-node
name: Remove untagged versions of dockerspackstackslurmcluster/node
uses: actions/delete-package-versions@v5
with:
package-name: 'dockerspackstackslurmcluster/slurm-node'
package-name: 'dockerspackstackslurmcluster/node'
package-type: 'container'
min-versions-to-keep: 0
delete-only-untagged-versions: 'true'
Expand Down

0 comments on commit 320c293

Please sign in to comment.