Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonPucheu authored Jan 25, 2024
1 parent ffcaabd commit ff452a4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ github.sha }}
release_name: Release ${{ github.sha }}

0 comments on commit ff452a4

Please sign in to comment.