Delete cd_src_release.yml.disabled
This commit is contained in:
parent
9436b63f5f
commit
861fd68bda
30
.github/workflows/cd_src_release.yml.disabled
vendored
30
.github/workflows/cd_src_release.yml.disabled
vendored
@ -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/upload-release-asset@v1.0.1
|
||||
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
|
Loading…
x
Reference in New Issue
Block a user