aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-07-22 16:51:28 +0200
committerMiquel Sabaté Solà <mssola@mssola.com>2026-07-22 16:51:28 +0200
commitac36786e9e4a3a4b98eb128f10220ed22b66c4d9 (patch)
tree67bd84dcf651c9dddcc2a8897e86a56ba949f723 /.github/workflows/build.yml
parent6ee6c7512bdbc836642dfdd607854faced55dfc3 (diff)
downloadjetpac.nes-ac36786e9e4a3a4b98eb128f10220ed22b66c4d9.tar.gz
jetpac.nes-ac36786e9e4a3a4b98eb128f10220ed22b66c4d9.zip
Remove .github directory
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml55
1 files changed, 0 insertions, 55 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
deleted file mode 100644
index 5304de0..0000000
--- a/.github/workflows/build.yml
+++ /dev/null
@@ -1,55 +0,0 @@
-name: Continuous build and release
-
-on:
- push:
- branches: [main]
- pull_request:
- branches: [main]
-
-permissions:
- contents: write
-
-jobs:
- test:
- name: Continuous Integration
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout Code
- uses: actions/checkout@v4
-
- - name: Install dependencies from Ubuntu sources
- run: sudo apt-get install cc65
-
- - name: Set up Ruby
- uses: ruby/setup-ruby@v1
- with:
- ruby-version: 'ruby'
-
- - name: Lint scripts on bin/
- run: |
- gem install rubocop
- rubocop bin/ --format github
-
- - name: Main task
- run: V=1 make release
-
- - name: Clean old release assets
- run: gh release delete latest --yes --cleanup-tag || true
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
- - name: Update releases page
- uses: softprops/action-gh-release@v2
- with:
- tag_name: latest
- name: Continuous Build
- files: out/*.nes
- overwrite_files: true
- body: |
- This release was automatically generated from commit ${{github.sha}}.
- draft: false
- prerelease: true
- make_latest: true
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}