Skip to content

Commit

Permalink
Fix docker push
Browse files Browse the repository at this point in the history
  • Loading branch information
ije committed Jul 5, 2023
1 parent 88aa4b0 commit b88a2ef
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/docker-push-dev.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Docker push dev
name: Docker

on:
push:
branches:
- main

jobs:
dev:
push_image:
name: Push `dev`
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down Expand Up @@ -36,4 +37,4 @@ jobs:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: esm-dev/esm.sh:dev
tags: ghcr.io/esm-dev/esm.sh:dev
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Docker push latest
name: Docker

on:
push:
tags:
- v*

jobs:
latest:
push_image:
name: Push `stable`
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down Expand Up @@ -36,4 +37,4 @@ jobs:
context: ./.github/docker
platforms: linux/amd64,linux/arm64
push: true
tags: esm-dev/esm.sh:latest,esm-dev/esm.sh:v127
tags: ghcr.io/esm-dev/esm.sh:latest,ghcr.io/esm-dev/esm.sh:v127
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Testing
name: CI

on:
push:
Expand Down

0 comments on commit b88a2ef

Please sign in to comment.