All checks were successful
Publish / Build and upload docker image (release) Successful in 40s
25 lines
564 B
YAML
25 lines
564 B
YAML
name: Publish
|
|
on: release
|
|
|
|
jobs:
|
|
build-docker-image:
|
|
name: Build and upload docker image
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Pull source
|
|
uses: actions/checkout@v3
|
|
- name: Create dir
|
|
run: mkdir -p bin
|
|
- name: Copy files
|
|
run: cp White-light.wav bin/ && cp White-light.fseq bin/
|
|
|
|
|
|
- uses: akkuman/gitea-release-action@v1
|
|
env:
|
|
NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
|
|
with:
|
|
files: |-
|
|
bin/**
|
|
|
|
- name: Remove file
|
|
run: rm -rdf bin/ |