Skip to content

Commit 663bb6e

Browse files
committed
updated release workflow
1 parent db883c6 commit 663bb6e

File tree

2 files changed

+5
-70
lines changed

2 files changed

+5
-70
lines changed

.github/core-release.yml_example

Lines changed: 0 additions & 65 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
# 2 - RTL synthesis
2727
- name: Run compilation flow
28-
run: quartus_sh --flow compile PCXT.qpf
28+
run: quartus_sh --flow compile mycore.qpf
2929

3030
# 3 - Set current date for tagging binary
3131
- name: Set current date
@@ -35,7 +35,7 @@ jobs:
3535
# 4 - Create a copy and tag with date
3636
- name: Create a copy and tag with date
3737
run: |
38-
cp output_files/PCXT.rbf output_files/PCXT_${{ steps.date.outputs.date }}.rbf
38+
cp output_files/mycore.rbf output_files/mycore_${{ steps.date.outputs.date }}.rbf
3939
4040
# 5 - Upload artifacts
4141
- name: Upload artifacts
@@ -50,19 +50,19 @@ jobs:
5050
if: startsWith(github.ref, 'refs/tags/')
5151
with:
5252
files: |
53-
output_files/PCXT_${{ steps.date.outputs.date }}.rbf
53+
output_files/mycore_${{ steps.date.outputs.date }}.rbf
5454
5555
# [Do not work. Error: Not a git repository]
5656
# Check https://github.com/MiSTer-DB9/Genesis_MiSTer/tree/master/.github for a way to push releases
5757
# # 7 - Add bitstream file to release folder
5858
# - name: Commit Binary to Repository
5959
# run: |
60-
# cp output_files/PCXT.rbf releases/PCXT_${{ steps.date.outputs.date }}.rbf
60+
# cp output_files/mycore.rbf releases/mycore_${{ steps.date.outputs.date }}.rbf
6161
# git fetch
6262
# git checkout -b main
6363
# git config user.name github-actions
6464
# git config user.email github-actions@github.com
65-
# git add release/PCXT_${{ steps.version.outputs.version }}.rbf
65+
# git add release/mycore_${{ steps.version.outputs.version }}.rbf
6666
# git commit -m "Release ${{ steps.version.outputs.version }}"
6767
# git push origin main
6868

0 commit comments

Comments
 (0)