mirror of
https://github.com/aleleba/aleleba-vscode-dockerfile-configuration.git
synced 2025-01-09 05:06:46 -06:00
Trying to build with github actions the building of arm arch. updating to version 3.0.38
This commit is contained in:
parent
1b278e0eea
commit
b30b350fe4
30
.github/workflows/main-workflow.yml
vendored
Normal file
30
.github/workflows/main-workflow.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
name: Build and Push Docker Image ARM64
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
-
|
||||||
|
name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
-
|
||||||
|
name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
-
|
||||||
|
name: Build and push
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: aleleba/vscode:latest
|
||||||
|
platforms: linux/arm64
|
@ -1,2 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t $IMAGE_NAME .
|
|
@ -1 +1 @@
|
|||||||
3.0.37
|
3.0.38
|
Loading…
Reference in New Issue
Block a user