Trying to build with github actions the building of arm arch. updating to version 3.0.38

This commit is contained in:
Alejandro Lembke Barrientos 2024-04-24 11:37:47 -06:00
parent 1b278e0eea
commit b30b350fe4
No known key found for this signature in database
GPG Key ID: CF56F422A61141DD
3 changed files with 31 additions and 3 deletions

30
.github/workflows/main-workflow.yml vendored Normal file
View 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

View File

@ -1,2 +0,0 @@
#!/bin/bash
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t $IMAGE_NAME .

View File

@ -1 +1 @@
3.0.37
3.0.38