summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-08-19 10:03:00 +0200
committerraysan5 <[email protected]>2020-08-19 10:03:00 +0200
commit861fd68bdaf4eb166577eac59dd8d70ad70edd5b (patch)
tree94e57872c1fe39c2da6e70d62ca59a76c9d12277 /.github
parent9436b63f5f3b9a7dacc4d703d482b24a5c49459f (diff)
downloadraylib-861fd68bdaf4eb166577eac59dd8d70ad70edd5b.tar.gz
raylib-861fd68bdaf4eb166577eac59dd8d70ad70edd5b.zip
Delete cd_src_release.yml.disabled
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cd_src_release.yml.disabled30
1 files changed, 0 insertions, 30 deletions
diff --git a/.github/workflows/cd_src_release.yml.disabled b/.github/workflows/cd_src_release.yml.disabled
deleted file mode 100644
index 4fa720ba..00000000
--- a/.github/workflows/cd_src_release.yml.disabled
+++ /dev/null
@@ -1,30 +0,0 @@
-name: CD - Source Build & Release - Linux
-
-# Trigger the workflow on release publish
-on:
- release:
- types: [published]
-
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@master
-
- # TODO: Build project and zip generated files
- - name: Build project
- id: build_project
- run: |
- zip raylib.zip README.md
-
- - name: Upload Release Asset
- id: upload-release-asset
- uses: actions/[email protected]
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- with:
- upload_url: ${{ github.event.release.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
- asset_path: ./raylib.zip
- asset_name: raylib.zip
- asset_content_type: application/zip