-
Notifications
You must be signed in to change notification settings - Fork 101
35 lines (35 loc) · 1.1 KB
/
publish-release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Publish Release
on:
release:
types: [published]
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
jobs:
publish-docker-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/[email protected]
with:
platforms: linux/amd64,linux/arm64
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Get Tag for Docker
run: VERSION=$(sed 's/v//' <<< ${{ github.ref_name }}) && echo "::set-output name=tagname::$VERSION"
id: tagname
- name: Build and Push
uses: docker/build-push-action@v2
with:
context: ./docker/
platforms: linux/amd64,linux/arm64
file: ./docker/Dockerfile
tags: ringojs/ringojs:${{ steps.tagname.outputs.tagname }}
push: true