Initial commit
This commit is contained in:
commit
4491542873
25
.gitea/workflows/publish.yml
Normal file
25
.gitea/workflows/publish.yml
Normal file
@ -0,0 +1,25 @@
|
||||
name: "publish-deb"
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
VERSION:
|
||||
description: "Version to publish"
|
||||
required: true
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Create package
|
||||
run: |
|
||||
echo "Hello world!" > hello_world.txt
|
||||
tar cvzf hello_world.tar.gz hello_world.txt
|
||||
|
||||
- name: Publish package
|
||||
run: |
|
||||
curl --user oysteikt:${{ secrets.GITEA_PUBLISH_TOKEN }} \
|
||||
--upload-file hello_world.tar.gz \
|
||||
https://git.pvv.ntnu.no/api/packages/oysteikt/generic/gitea-package-publishing-test/${{ vars.VERSION }}/hello_world.tar.gz
|
||||
|
Loading…
x
Reference in New Issue
Block a user