Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
git-bruh committed Aug 30, 2022
1 parent f803a11 commit fbdc257
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release

on:
push:
branches:
- main
workflow_dispatch:

env:
VERSION: 3.0.5
SHA256: aa7d8d9bef71ad6525c55ba11e5f4397889ce49c2c9349dcea6d3e4f0b024a7a

jobs:
build:
name: Generate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: ./generate.sh "$VERSION" "$SHA256"
- name: Release
uses: softprops/action-gh-release@v1
with:
body: "Generated"
draft: false
name: "Generated"
tag_name: generated
files: openssl-3.0.5-generated.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit fbdc257

Please sign in to comment.