Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonPucheu committed Jan 25, 2024
1 parent 944cbed commit ce548b1
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release on Commit

on:
push:
branches:
- main

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Git
run: |
git config --global user.email "104694344+SimonPucheu@users.noreply.github.com"
git config --global user.name "Simon Pucheu"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: 1.${{ github.run_number }}
release_name: Release ${{ github.run_number }}

0 comments on commit ce548b1

Please sign in to comment.