Skip to content

Commit

Permalink
finalizing initial release version
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdcvlsc committed Oct 25, 2023
1 parent 24022cc commit 94d6832
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
19 changes: 7 additions & 12 deletions .github/workflows/CI.yml → .github/workflows/builds.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
name: CI

# normal way of pushing
on: [push, pull_request]

# # https://stackoverflow.com/questions/63932728/github-action-release-tag
# # only happens if a tag was pushed e.g: `git push origin v1.0.0`
# on:
# push:
# # Sequence of patterns matched against refs/tags
# tags:
# - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: builds

# on: [push, pull_request]
on:
push:
tags:
- 'v*'

jobs:
build:
Expand Down
7 changes: 6 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# FLAPPY-FFNN-GA

A Flappy Bird like game that uses a feedforward neural network to play the game, and a genetic algorithm to learn how to play the game.
![builds](https://github.com/mrdcvlsc/flappy-ffnn-ga/actions/workflows/builds.yml/badge.svg)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)

A Flappy Bird like game that uses a feedforward neural network to play the game, and a genetic algorithm to learn how to play the game.

In windows you need to install [Microsoft Visual C++ Redistributable](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170#visual-studio-2015-2017-2019-and-2022) to make the release versions working.

0 comments on commit 94d6832

Please sign in to comment.