Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
24be001317 | |||
3fcd36bac1 | |||
d03afeb8c4 | |||
c9199fad81 | |||
ebeaa551ff | |||
4dedea1949 | |||
bb29a70f4c | |||
70beb4c25e | |||
9c312927bf | |||
df2f706292 | |||
567efb9ec0 | |||
8ee34a6226 | |||
c3133bbcda | |||
b96a1239e5 |
18
.github/workflows/release.yml
vendored
18
.github/workflows/release.yml
vendored
@ -7,6 +7,8 @@ jobs:
|
||||
release:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
new_tag: ${{ steps.tag_version.outputs.new_tag }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Bump version and push tag
|
||||
@ -25,13 +27,25 @@ jobs:
|
||||
publish:
|
||||
name: GitHub Container Registry
|
||||
runs-on: ubuntu-latest
|
||||
needs: release
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Login to GitHub Container Registry
|
||||
run: echo ${{ secrets.GHCR_ACCESS_TOKEN }} | docker login ghcr.io -u luketainton --password-stdin
|
||||
- name: Build image for GitHub Package Registry
|
||||
run: docker build . --file Dockerfile --tag ghcr.io/luketainton/roboluke-tasks:${{ steps.tag_version.outputs.new_tag }} --tag ghcr.io/luketainton/roboluke-tasks:latest
|
||||
run: docker build . --file Dockerfile --tag ghcr.io/luketainton/roboluke-tasks:${{ needs.release.outputs.new_tag }} --tag ghcr.io/luketainton/roboluke-tasks:latest
|
||||
- name: Push image to GitHub Package Registry
|
||||
run: |
|
||||
docker push ghcr.io/luketainton/roboluke-tasks:latest
|
||||
docker push ghcr.io/luketainton/roboluke-tasks:${{ steps.tag_version.outputs.new_tag }}
|
||||
docker push ghcr.io/luketainton/roboluke-tasks:${{ needs.release.outputs.new_tag }}
|
||||
|
||||
deploy:
|
||||
name: Update Portainer Deployment
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: fjogeleit/http-request-action@v1
|
||||
with:
|
||||
url: ${{ secrets.PORTAINER_WEBHOOK_URL }}
|
||||
method: POST
|
||||
timeout: 30000
|
||||
preventFailureOnNoResponse: 'true'
|
||||
|
@ -5,7 +5,7 @@ autopep8==2.0.4
|
||||
backoff==2.2.1
|
||||
certifi==2023.7.22
|
||||
cfgv==3.4.0
|
||||
charset-normalizer==3.3.0
|
||||
charset-normalizer==3.3.1
|
||||
click==8.1.7
|
||||
coloredlogs==15.0.1
|
||||
dill==0.3.7
|
||||
@ -38,7 +38,7 @@ toml==0.10.2
|
||||
tomli==2.0.1
|
||||
tomlkit==0.12.1
|
||||
urllib3==2.0.7
|
||||
virtualenv==20.24.5
|
||||
virtualenv==20.24.6
|
||||
webex-bot==0.4.1
|
||||
webexteamssdk==1.6.1
|
||||
websockets==10.2
|
||||
|
Reference in New Issue
Block a user