mirror of
https://forgejo.merr.is/annika/isl-api.git
synced 2025-12-14 15:05:40 -05:00
Trying Some Runner Tests
This commit is contained in:
parent
1d2bdb401a
commit
3017cc2d87
3 changed files with 36 additions and 42 deletions
32
.forgejo/workflows/debugging.yml
Normal file
32
.forgejo/workflows/debugging.yml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
---
|
||||
name: release
|
||||
on:
|
||||
push:
|
||||
|
||||
env:
|
||||
DOCKER_HOST: tcp://docker-in-docker:2375
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build and push docker image
|
||||
runs-on: docker
|
||||
container:
|
||||
image: node:21-alpine
|
||||
steps:
|
||||
- name: Install docker
|
||||
shell: /bin/ash -e {0}
|
||||
run: apk add --update docker git
|
||||
- name: Create Some Files
|
||||
shell: /bin/ash -e {0}
|
||||
run: |
|
||||
mkdir -p /dist
|
||||
touch /dist/test1
|
||||
touch /dist/test2
|
||||
- name: Check out the repo
|
||||
uses: https://github.com/actions/checkout@v4
|
||||
- name: See If I Can Call My forgejo-release
|
||||
uses: https://forge.merr.is/actions/forgejo-release@alpinev1
|
||||
with:
|
||||
direction: upload
|
||||
release-dir: /dist
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue