Tanguy Herbron
068bae68c5
All checks were successful
S3 mount container image build / build (push) Successful in 1m27s
24 lines
476 B
YAML
24 lines
476 B
YAML
name: S3 mount container image build
|
|
on:
|
|
release:
|
|
types: [published]
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
container:
|
|
#image: node:18.17.0-alpine3.17
|
|
image: node:latest
|
|
runs-on: [arm64]
|
|
|
|
steps:
|
|
- run: export
|
|
- run: ls
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: ${{ secrets.GITHUB_REF }}
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- run: echo "Testing"
|