Skip to content

FIXED: typo in the file name #7

FIXED: typo in the file name

FIXED: typo in the file name #7

Workflow file for this run

name: C/C++ CI
on: [push, pull_request]
jobs:
build:
name: ubuntu-latest
runs-on: ubuntu-latest
container:
image: devkitpro/devkitarm:latest
options: --volume /tmp/artifacts:/workspace/artifacts
steps:
- uses: actions/[email protected]
- name: Build
run: |
mkdir -p /workspace/artifacts
make
cp hello-world-nds.nds /workspace/artifacts/hello-world-nds.nds
- name: Upload Artifacts to Workspace
run: |
mv /workspace/artifacts/hello-world-nds.nds $GITHUB_WORKSPACE/hello-world-nds.nds
- name: Create GitHub Release
uses: ncipollo/release-action@v1
with:
artifacts: hello-world-nds.nds
tag: v1.0
name: "Release v1.0"
body: "Automated release of version v1.0"
allowUpdates: true
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}