Skip to content

Commit

Permalink
Preprare for v0.1.0 release (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 authored Nov 13, 2023
1 parent 87816a1 commit b62a750
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
branches:
- main

release:
types:
- published

jobs:
sanity:
name: run sanity checks
Expand Down Expand Up @@ -149,3 +153,22 @@ jobs:
with:
files: ./coverage.xml
flags: ${{ env.OS }},py${{ matrix.python-version }},ansible_${{ matrix.ansible-version }}

publish:
name: publish
needs:
- test
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write

steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: ./dist

- name: Publish
if: startsWith(github.ref, 'refs/tags/v')
uses: pypa/gh-action-pypi-publish@release/v1
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## 0.1.0 - 2023-11-13

Initial release of `ansibug`

This version should be treated as a pre-release, any behavior may change in future versions depending on feedback.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jborean93/ansibug/blob/main/LICENSE)

The core component of the Ansible Debug Adapter Protocol used for debugging Ansible playbooks.
See more documentation for `ansibug` at https://jborean93.github.io/ansibug/.

Please note this library should be considered a preview.
New features and behaviour changes should be expected during this preview period.

# Debug Adapter
This library combined with a [Debug Adapter Protocol](https://microsoft.github.io/debug-adapter-protocol/) client, like Visual Studio Code, can be used to run and debug Ansible playbook's interactively.
Expand All @@ -26,10 +30,10 @@ There are no guarantees that all features will be supported across Ansible versi
Any such features will be explicitly called out in the documentation.

# Installation
Currently this library has not been published on PyPI and must be installed manually from source with:
This library has been published on PyPI and can be installed with:

```bash
python -m pip install https://github.com/jborean93/ansibug/archive/main.zip
python -m pip install ansibug
```

To test out the changes locally run the following:
Expand Down

0 comments on commit b62a750

Please sign in to comment.