Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit 5c80f30

Browse files
committed
2 parents 46d9bcd + db76a31 commit 5c80f30

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"name": "Python 3 Developer Container",
44
"build": {
5-
"dockerfile": "Dockerfile",
5+
"dockerfile": "../Dockerfile",
66
"target": "build",
77
// Only upgrade pip, we will install the project below
88
"args": {

.github/workflows/code.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
- name: Download wheel and lockfiles
135135
uses: actions/download-artifact@v3
136136
with:
137-
path: .devcontainer
137+
path: artifacts/
138138

139139
- name: Log in to GitHub Docker Registry
140140
if: github.event_name != 'pull_request'
@@ -166,7 +166,8 @@ jobs:
166166
load: ${{ ! (github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) }}
167167
tags: ${{ steps.meta.outputs.tags }}
168168
labels: ${{ steps.meta.outputs.labels }}
169-
context: .devcontainer
169+
context: artifacts/
170+
file: ./Dockerfile
170171
# If you have a long docker build, uncomment the following to turn on caching
171172
# For short build times this makes it a little slower
172173
#cache-from: type=gha
@@ -193,7 +194,7 @@ jobs:
193194
- name: Github Release
194195
# We pin to the SHA, not the tag, for security reasons.
195196
# https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions
196-
uses: softprops/action-gh-release@1e07f4398721186383de40550babbdf2b84acfc5 # v0.1.14
197+
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15
197198
with:
198199
prerelease: ${{ contains(github.ref_name, 'a') || contains(github.ref_name, 'b') || contains(github.ref_name, 'rc') }}
199200
files: |

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
if: github.event_name == 'push' && github.actor != 'dependabot[bot]'
4747
# We pin to the SHA, not the tag, for security reasons.
4848
# https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions
49-
uses: peaceiris/actions-gh-pages@de7ea6f8efb354206b205ef54722213d99067935 # v3.9.0
49+
uses: peaceiris/actions-gh-pages@64b46b4226a4a12da2239ba3ea5aa73e3163c75b # v3.9.1
5050
with:
5151
github_token: ${{ secrets.GITHUB_TOKEN }}
5252
publish_dir: .github/pages
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
FROM python:3.11 as build
77

8-
ARG PIP_OPTIONS
8+
ARG PIP_OPTIONS=.
99

1010
# Add any system dependencies for the developer/build environment here e.g.
1111
# RUN apt-get update && apt-get upgrade -y && \

0 commit comments

Comments
 (0)