Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
emvakar committed Feb 14, 2024
1 parent 05e3825 commit f0e84f1
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test and Release

on:
push:
branches:
- main
paths-ignore:
- '**.md'
- 'LICENSE'
- '**/*.gitignore'
- '**/*.eslintrc.json'
- '**/*.dockerignore'
workflow_dispatch:

jobs:
release:
name: Release
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }}
steps:
- uses: rymndhng/release-on-push-action@master
with:
bump_version_scheme: patch
use_github_release_notes: true
release_name: "Release <RELEASE_VERSION>"
max_commits: 100
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.github/workflows/.DS_Store
7 changes: 6 additions & 1 deletion set-shared-envs-action.yml → action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: 'Set shared envs'
description: 'Set app name from repo and release version'
author: 'emvakar'
branding:
icon: 'bell'
color: blue

inputs:
repository_owner:
description: 'Repository owner'
Expand All @@ -8,7 +13,7 @@ inputs:
description: 'Commit reference'
required: true
runs:
using: "composite"
using: 'composite'
steps:
- name: Set App Name
run: |
Expand Down
Empty file added entrypoint.sh
Empty file.

0 comments on commit f0e84f1

Please sign in to comment.