Skip to content

Commit

Permalink
add increment product version workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mithereal committed Jan 1, 2024
1 parent fb2dcd2 commit b46bd45
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 66 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ jobs: # basic units of work in a run
build: # runs not using Workflows must have a `build` job as entry point
parallelism: 1 # run only one instance of this job
docker: # run the steps with Docker
- image: circleci/elixir:1.9 # ...with this image as the primary container; this is where all `steps` will run
- image: cimg/elixir:1.15.5-erlang-26.0.2 # ...with this image as the primary container; this is where all `steps` will run
environment: # environment variables for primary container
MIX_ENV: test

Expand Down Expand Up @@ -38,4 +38,4 @@ jobs: # basic units of work in a run

- store_test_results: # upload junit test results for display in Test Summary
# Read more: https://circleci.com/docs/2.0/collect-test-data/
path: _build/test/lib/apeedtest # Replace with the name of your :app
path: _build/test/lib/speedtest # Replace with the name of your :app
63 changes: 0 additions & 63 deletions .github/workflows/coveralls.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/increment_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fetch-depth: 0

- name: Bump version and push tag
uses: anothrNick/github-tag-action@1.36.0
uses: data-twister/github-tag-action-elixir@1.0.0
env:
GITHUB_TOKEN: ${{ github.token }}
WITH_V: true

0 comments on commit b46bd45

Please sign in to comment.