Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
sanriodev authored Feb 16, 2024
2 parents 64b9379 + 1e28ddb commit 834d207
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 4 deletions.
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE/custom.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Custom issue template
about: Describe this issue template's purpose here.
title: ''
labels: discussion, question
assignees: ''

---

**My Question is:*
Your Question about BingusBoingus.

**What I've tried so far**

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Additional context**
Add any other context about the problem here.
10 changes: 8 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Docker Image CI

on:
push:
branches: ['master', 'dev']
branches: ['dev']
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

env:
IMAGE_NAME: bingusboingus
Expand Down Expand Up @@ -30,12 +32,16 @@ jobs:
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
[ "$VERSION" == "master" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION
if [[ $VERSION =~ ^[0-9]+.[0-9]+.[0-9]+$ ]]; then
docker tag $IMAGE_ID:$VERSION $IMAGE_ID:latest
docker push $IMAGE_ID:$VERSION
fi
# build repoUrl
# change all uppercase characters to lowercase
# strip git ref prefix from version
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.0.1](https://github.com/Blvckleg/BingusBoingus/compare/v1.0.0...v1.0.1) (2024-02-16)



### Bug Fixes

* **workflows:** i think this should do it ([141f4f2](https://github.com/Blvckleg/BingusBoingus/commit/141f4f2b51d49abbadf20d59df24585bce12dfe2))

## 1.0.0 (2024-02-15)

### Features
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "bingusboingus",
"version": "1.0.0",
"version": "1.0.1",
"description": "Hey look it's Bingus.... or Boingus?? OR BOTH??",
"main": "src/main.ts",
"scripts": {
Expand Down

0 comments on commit 834d207

Please sign in to comment.