Skip to content

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnnynator committed Oct 21, 2023
1 parent f438525 commit b4cd414
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
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:
tags:
- '*'

jobs:
release:
name: Release
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: Bootstrap
run: ./bootstrap.sh

- name: Configure
run: ./configure

- name: Make dist
run: make dist

- name: Upload dist to Release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: obstack-*.tar.gz
tag: ${{ github.ref }}
file_glob: true
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script

AC_PREREQ(2.69)

AC_INIT([obstack], [1.2], [[email protected]])
AC_INIT([obstack], [1.2.4], [[email protected]])

AM_INIT_AUTOMAKE([1.16])
AC_CONFIG_MACRO_DIR([m4])
Expand Down

0 comments on commit b4cd414

Please sign in to comment.