Semantic Release

I was messing around with semantic releases for a while and came to the solution that I will replace in this article. What a twist! :) Basically, my solution was this: name: Create New Tag on: push: branches: - master jobs: tag: runs-on: ubuntu-22.04 permissions: contents: write steps: - uses: actions/checkout@v3 with: fetch-depth: '0' - name: Bump version and push tag uses: anothrNick/github-tag-action@1.66.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} WITH_V: true BRANCH_HISTORY: full INITIAL_VERSION: 1....

December 10, 2023

Ejabberd config

IMPORTANT! I’m not an expert in setting up ejabberd in a proper and most important secure way. This config is my first attempt to set up things in a way I want to setup. So this article will be updated soon… Ejabberd is an amazing platform allowing you to setup communication between users fast. In my case it should be as an microservice ( cuz' why should I need to reinvent the wheel and write chat from scratch ?...

September 9, 2023