Skip to content

Commit

Permalink
Merge pull request #2 from embedd-actions/test
Browse files Browse the repository at this point in the history
Test
  • Loading branch information
SergeyLadanov authored Sep 18, 2023
2 parents f0b7178 + de33a15 commit ca30c9b
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 2 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build_docker_image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Publish image

on:
push:
tags:
- '*'

jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout repository
- name: Checkout code
uses: actions/checkout@v3


- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: sergeyladanov/arm-gcc

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: Image.Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
platforms: linux/amd64,linux/arm64
1 change: 1 addition & 0 deletions Action.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FROM sergeyladanov/arm-gcc:v3
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- name: make
uses: embedd-actions/arm-gcc-ci@v2
uses: embedd-actions/arm-gcc-ci@v3
with:
command: make --directory Release all
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
default: arm-none-eabi-gcc --version
runs:
using: 'docker'
image: 'Dockerfile'
image: 'Action.Dockerfile'
args:
- /bin/sh
- -c
Expand Down

0 comments on commit ca30c9b

Please sign in to comment.