Skip to content

Commit

Permalink
Updating Changelog and version.
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisAlejandro committed Sep 5, 2023
1 parent 4ffea67 commit 026a77b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Building docker image
uses: docker/build-push-action@v4
with:
tags: ghcr.io/luisalejandro/agoras-actions:1.1.2
tags: ghcr.io/luisalejandro/agoras-actions:1.1.3
file: docker/Dockerfile
context: docker
cache-from: type=gha
Expand Down
7 changes: 7 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog


## 1.1.3 (2023-09-05)

### Changed

* Adding support for --status-link. [Luis Alejandro Martínez Faneyth]


## 1.1.2 (2023-09-03)

### Fixed
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

---

Current version: 1.1.2
Current version: 1.1.3

Agoras is a python utility that helps publish and delete posts on the most popular social networks (twitter, facebook, instagram and linkedin).

Expand All @@ -20,7 +20,7 @@ jobs:
publish:
runs-on: ubuntu-22.04
steps:
- uses: LuisAlejandro/[email protected].2
- uses: LuisAlejandro/[email protected].3
with:
network: facebook
action: post
Expand Down Expand Up @@ -54,14 +54,14 @@ jobs:
publish-like:
runs-on: ubuntu-22.04
steps:
- uses: LuisAlejandro/[email protected].2
- uses: LuisAlejandro/[email protected].3
id: agoras
with:
network: linkedin
action: post
status-text: This is a test post
linkedin-access-token: ZCNqH3bT0as2ZBB...
- uses: LuisAlejandro/[email protected].2
- uses: LuisAlejandro/[email protected].3
with:
network: linkedin
action: like
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
publish-like:
runs-on: ubuntu-22.04
steps:
- uses: LuisAlejandro/[email protected].2
- uses: LuisAlejandro/[email protected].3
with:
network: linkedin
action: post
Expand All @@ -131,7 +131,7 @@ jobs:
publish-like:
runs-on: ubuntu-22.04
steps:
- uses: LuisAlejandro/[email protected].2
- uses: LuisAlejandro/[email protected].3
with:
network: facebook
action: post
Expand All @@ -154,7 +154,7 @@ jobs:
publish-like:
runs-on: ubuntu-22.04
steps:
- uses: LuisAlejandro/[email protected].2
- uses: LuisAlejandro/[email protected].3
with:
network: facebook
action: last-from-feed
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ outputs:

runs:
using: docker
image: docker://ghcr.io/luisalejandro/agoras-actions:1.1.2
image: docker://ghcr.io/luisalejandro/agoras-actions:1.1.3
args:
- network="${{ inputs.network }}"
- action="${{ inputs.action }}"
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ LABEL org.label-schema.build-date=${BUILD_DATE} \

RUN apt-get update && apt-get install jq

RUN pip3 install agoras==1.1.2
RUN pip3 install agoras==1.1.3

ADD entrypoint.sh /entrypoint.sh
ADD execute.py /execute.py
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.2
current_version = 1.1.3
tag_name = {new_version}
commit = True
tag = True
Expand Down

0 comments on commit 026a77b

Please sign in to comment.