Skip to content

Commit 83cd0e2

Browse files
authored
Merge pull request #7 from shoddyguard/publish_puppet_module
Publish puppet module
2 parents 95399bf + d32773e commit 83cd0e2

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: publish-puppet-module
2+
3+
on:
4+
push:
5+
tags:
6+
- v[0-9]+.[0-9]+.[0-9]+
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Get latest tag
13+
id: vars
14+
run: echo ::set-output name=tag::${GITHUB_REF:10}
15+
- name: Clone repository
16+
uses: actions/checkout@v2
17+
with:
18+
ref: ${{ steps.vars.outputs.tag }}
19+
- name: Build and publish module
20+
uses: barnumbirr/action-forge-publish@v2.4.0
21+
env:
22+
FORGE_API_KEY: ${{ secrets.PUPPET_FORGE_TOKEN }}
23+
REPOSITORY_URL: https://forgeapi.puppet.com/v3/releases

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
## Release
66

7+
### 0.1.0
8+
79
**Features**
10+
Initial release, all current features documented in the README
811

912
**Bugfixes**
1013

1114
**Known Issues**
15+
DHCP, IPSET and TLS/SSL not yet implemented

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![validate-puppet-module Actions Status](https://github.com/shoddyguard/puppet_adguard/workflows/validate-puppet-module/badge.svg?branch=main)](https://github.com/shoddyguard/Puppet-Adguard/actions)
1+
[![validate-puppet-module Actions Status](https://github.com/shoddyguard/Puppet-Adguard/workflows/validate-puppet-module/badge.svg?branch=main)](https://github.com/shoddyguard/Puppet-Adguard/actions)[![publish-puppet-module Actions Status](https://github.com/shoddyguard/Puppet-Adguard/workflows/publish-puppet-module/badge.svg)](https://github.com/shoddyguard/Puppet-Adguard/actions)
22
# Puppet-Adguard
33
Puppet module for installing and managing AdGuard Home
44

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "shoddyguard-adguard",
3-
"version": "1.0.0",
3+
"version": "0.1.0",
44
"author": "Steve Brown",
55
"summary": "Manages AdGuard Home",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)