Skip to content

Commit

Permalink
chore(workflows): Stop using artifacts, can not afford the space
Browse files Browse the repository at this point in the history
  • Loading branch information
F0bes committed Jul 29, 2022
1 parent b3224f2 commit 72b4e59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/generic-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,3 @@ jobs:
- name: Compile project
run: |
make clean all
mkdir artifacts
cp biosdrain.elf artifacts/biosdrain.elf
- name: Upload ELF
uses: actions/upload-artifact@v2
with:
name: biosdrain
path: artifacts
11 changes: 3 additions & 8 deletions .github/workflows/master-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,15 @@ jobs:
- name: Compile project
run: |
make clean all
mkdir artifacts
cp biosdrain.elf artifacts/biosdrain.elf
mkdir binaries
cp biosdrain.elf binaries/biosdrain.elf
- name: Create Release
uses: softprops/action-gh-release@v1
if: steps.tag_version.outputs.new_tag
with:
prerelease: true
files: |
artifacts/biosdrain.elf
binaries/biosdrain.elf
tag_name: ${{ steps.tag_version.outputs.new_tag }}

- name: Upload ELF
uses: actions/upload-artifact@v2
with:
name: biosdrain
path: artifacts

0 comments on commit 72b4e59

Please sign in to comment.