mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2025-01-03 06:10:20 +00:00
CI: (Attempt to) push image to our org, not my personal account
This commit is contained in:
parent
863377d814
commit
97cce9196d
56
.github/workflows/publish.yml
vendored
56
.github/workflows/publish.yml
vendored
@ -2,52 +2,40 @@ name: publish
|
|||||||
on:
|
on:
|
||||||
release:
|
release:
|
||||||
types:
|
types:
|
||||||
- created
|
- created
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
# Setup .npmrc file to publish to npm
|
# Setup .npmrc file to publish to npm
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
# Align the version of Node here with ci.yml.
|
# Align the version of Node here with ci.yml.
|
||||||
node-version: '17.x'
|
node-version: '17.x'
|
||||||
registry-url: 'https://registry.npmjs.org'
|
registry-url: 'https://registry.npmjs.org'
|
||||||
# Will also (through `prepare` hook): 1. install ./app, and 2. build
|
# Will also (through `prepare` hook): 1. install ./app, and 2. build
|
||||||
- run: npm ci --no-fund
|
- run: npm ci --no-fund
|
||||||
- run: npm test
|
- run: npm test
|
||||||
- run: npm run lint
|
- run: npm run lint
|
||||||
- run: npm publish
|
- run: npm publish
|
||||||
env:
|
env:
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
|
|
||||||
# Docker build image and push to DockerHub
|
|
||||||
docker:
|
docker:
|
||||||
needs: build
|
needs: build
|
||||||
|
|
||||||
env:
|
|
||||||
IMAGE_ID: ${{ secrets.DOCKERHUB_USERNAME }}/nativefier
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
- name: Build Docker image
|
||||||
- name: Build image
|
run: docker build . --file Dockerfile --tag "nativefier/nativefier:latest"
|
||||||
run: docker build . --file Dockerfile --tag "$IMAGE_ID:latest"
|
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v1
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
- name: Tag and push Docker image
|
||||||
- name: Tag and Push
|
|
||||||
run: |
|
run: |
|
||||||
# Tag docker image the commit SHA
|
docker tag "nativefier/nativefier:latest" "nativefier/nativefier:${GITHUB_SHA::8}"
|
||||||
docker tag "$IMAGE_ID:latest" "$IMAGE_ID:${GITHUB_SHA::8}"
|
docker push "nativefier/nativefier:latest"
|
||||||
|
docker push "nativefier/nativefier:${GITHUB_SHA::8}"
|
||||||
# Push the images to the registry
|
|
||||||
docker push "$IMAGE_ID:latest"
|
|
||||||
docker push "$IMAGE_ID:${GITHUB_SHA::8}"
|
|
||||||
|
Loading…
Reference in New Issue
Block a user